2017-01-26 03:48:56 +01:00
|
|
|
{ stdenv, lib, fetchurl, ncurses }:
|
2016-07-14 18:57:38 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "smemstat";
|
2020-03-01 04:25:19 +01:00
|
|
|
version = "0.02.07";
|
2016-07-14 18:57:38 +02:00
|
|
|
src = fetchurl {
|
2019-04-22 10:14:28 +02:00
|
|
|
url = "https://kernel.ubuntu.com/~cking/tarballs/smemstat/smemstat-${version}.tar.xz";
|
2020-03-01 04:25:19 +01:00
|
|
|
sha256 = "09i5n1zjw45qrfbc2vglh1xk1jwqnc91bgsq7bkp29d9dpfpzhdc";
|
2016-07-14 18:57:38 +02:00
|
|
|
};
|
2017-01-26 03:48:56 +01:00
|
|
|
buildInputs = [ ncurses ];
|
2016-07-14 18:57:38 +02:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
postInstall = ''
|
|
|
|
mv $out/usr/* $out
|
|
|
|
rm -r $out/usr
|
|
|
|
'';
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Memory usage monitoring tool";
|
2020-03-01 04:25:19 +01:00
|
|
|
homepage = "https://kernel.ubuntu.com/~cking/smemstat/";
|
2016-07-14 18:57:38 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ womfoo ];
|
|
|
|
};
|
|
|
|
}
|