nixpkgs/pkgs/os-specific/linux/smemstat/default.nix

24 lines
674 B
Nix
Raw Normal View History

2017-01-26 02:48:56 +00:00
{ stdenv, lib, fetchurl, ncurses }:
2016-07-14 16:57:38 +00:00
stdenv.mkDerivation rec {
pname = "smemstat";
version = "0.02.05";
2016-07-14 16:57:38 +00:00
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/smemstat/smemstat-${version}.tar.xz";
sha256 = "00586w6f1cq7rayv6galh9qxk7wrz62zbha9qhrb1cf85axchvbw";
2016-07-14 16:57:38 +00:00
};
2017-01-26 02:48:56 +00:00
buildInputs = [ ncurses ];
2016-07-14 16:57:38 +00:00
installFlags = [ "DESTDIR=$(out)" ];
postInstall = ''
mv $out/usr/* $out
rm -r $out/usr
'';
meta = with lib; {
description = "Memory usage monitoring tool";
homepage = https://kernel.ubuntu.com/~cking/smemstat/;
2016-07-14 16:57:38 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo ];
};
}