Files
nixpkgs/pkgs/by-name/sm/smem/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

36 lines
751 B
Nix

{
lib,
stdenv,
fetchurl,
python3,
}:
stdenv.mkDerivation rec {
pname = "smem";
version = "1.5";
src = fetchurl {
url = "https://selenic.com/repo/smem/archive/${version}.tar.bz2";
sha256 = "19ibv1byxf2b68186ysrgrhy5shkc5mc69abark1h18yigp3j34m";
};
buildInputs = [
(python3.withPackages (pp: [ pp.matplotlib ]))
];
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 = "Memory usage reporting tool that takes shared memory into account";
platforms = lib.platforms.linux;
maintainers = [ ];
license = lib.licenses.gpl2Plus;
};
}