diff --git a/pkgs/tools/system/ttop/default.nix b/pkgs/tools/system/ttop/default.nix index 1a92ffb7e52b..67edfe27274d 100644 --- a/pkgs/tools/system/ttop/default.nix +++ b/pkgs/tools/system/ttop/default.nix @@ -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 ]; + }; })