e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
28 lines
742 B
Nix
28 lines
742 B
Nix
{ stdenv, lib, fetchFromGitHub, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smemstat";
|
|
version = "0.02.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ColinIanKing";
|
|
repo = pname;
|
|
rev = "V${version}";
|
|
hash = "sha256-wxgw5tPdZAhhISbay8BwoL5zxZJV4WstDpOtv9umf54=";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
installFlags = [
|
|
"BINDIR=${placeholder "out"}/bin"
|
|
"MANDIR=${placeholder "out"}/share/man/man8"
|
|
"BASHDIR=${placeholder "out"}/share/bash-completion/completions"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Memory usage monitoring tool";
|
|
homepage = "https://github.com/ColinIanKing/smemstat";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ womfoo ];
|
|
};
|
|
}
|