ttop: update meta

- add figsoda to maintainers
- add changelog
- don't use src.meta directly because it only provides the homepage and
  causes extra indentation
This commit is contained in:
figsoda 2023-09-02 10:10:38 -04:00
parent e953f0b02e
commit b123db8d74

View file

@ -24,11 +24,12 @@ nimPackages.buildNimPackage (finalAttrs: {
};
};
meta = with lib;
finalAttrs.src.meta // {
description = "Top-like system monitoring tool";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ sikmir ];
};
meta = with lib; {
description = "Top-like system monitoring tool";
homepage = "https://github.com/inv2004/ttop";
changelog = "https://github.com/inv2004/ttop/releases/tag/${finalAttrs.src.rev}";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ figsoda sikmir ];
};
})