summary refs log tree commit diff
path: root/pkgs/os-specific/linux/smem/default.nix
blob: a07eec431c338e0ca9ba08cfd3986e1225a641df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, stdenv, fetchurl, python }:

stdenv.mkDerivation rec {
  name = "smem-1.4";

  src = fetchurl {
    url = "https://www.selenic.com/smem/download/${name}.tar.gz";
    sha256 = "1v31vy23s7szl6vdrllq9zbg58bp36jf5xy3fikjfg6gyiwgia9f";
  };

  buildInputs = [ python ];

  buildPhase =
    ''
      gcc -O2 smemcap.c -o smemcap
    '';

  installPhase =
    ''
      mkdir -p $out/bin
      cp smem smemcap $out/bin/

      mkdir -p $out/share/man/man8
      cp smem.8 $out/share/man/man8/
    '';

  meta = {
    homepage = http://www.selenic.com/smem/;
    description = "A memory usage reporting tool that takes shared memory into account";
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.eelco ];
  };
}