mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
25 lines
637 B
Nix
25 lines
637 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "psstop";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clearlinux";
|
|
repo = "psstop";
|
|
rev = "v${version}";
|
|
sha256 = "03ir3jjpzm7q8n1qc5jr99hqarr9r529w1zb6f7q4wak2vfj7w9h";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/clearlinux/psstop;
|
|
description = "Show processes' memory usage by looking into pss"; # upstream summary
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
};
|
|
}
|