mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
e8776d9a5f
Now compatible with Python3
30 lines
737 B
Nix
30 lines
737 B
Nix
{ lib, stdenv, fetchurl, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "smem-${version}";
|
|
version = "1.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://selenic.com/repo/smem/archive/${version}.tar.bz2";
|
|
sha256 = "19ibv1byxf2b68186ysrgrhy5shkc5mc69abark1h18yigp3j34m";
|
|
};
|
|
|
|
buildInputs = [ python ];
|
|
|
|
makeFlags = [ "smemcap" ];
|
|
|
|
installPhase =
|
|
''
|
|
install -Dm555 -t $out/bin/ smem smemcap
|
|
install -Dm444 -t $out/share/man/man8/ smem.8
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://www.selenic.com/smem/;
|
|
description = "A memory usage reporting tool that takes shared memory into account";
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|