commit
616743a4c2
2 changed files with 32 additions and 0 deletions
30
pkgs/tools/misc/pkgtop/default.nix
Normal file
30
pkgs/tools/misc/pkgtop/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pkgtop";
|
||||
version = "2.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "orhun";
|
||||
repo = "pkgtop";
|
||||
rev = version;
|
||||
hash = "sha256-Skk7Zur2UMxNjrJmcp+FvUuNvbh9HmzuZ5mWcvhxcKk=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-dlDbNym7CNn5088znMNgGAr2wBM3+nYv3q362353aLs=";
|
||||
|
||||
postInstall = ''
|
||||
mv $out/bin/{cmd,pkgtop}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Interactive package manager and resource monitor designed for the GNU/Linux";
|
||||
homepage = "https://github.com/orhun/pkgtop";
|
||||
changelog = "https://github.com/orhun/pkgtop/releases/tag/${version}";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -22653,6 +22653,8 @@ with pkgs;
|
|||
|
||||
pkgdiff = callPackage ../tools/misc/pkgdiff { };
|
||||
|
||||
pkgtop = callPackage ../tools/misc/pkgtop { };
|
||||
|
||||
place-cursor-at = haskell.lib.compose.justStaticExecutables haskellPackages.place-cursor-at;
|
||||
|
||||
platform-folders = callPackage ../development/libraries/platform-folders { };
|
||||
|
|
Loading…
Reference in a new issue