summary refs log tree commit diff
path: root/pkgs/os-specific/linux/procps/default.nix
blob: a211bdde4545cc75290df9342c60396810e94caa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, ncurses}:

stdenv.mkDerivation {
  name = "procps-3.2.4";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/procps-3.2.4.tar.gz;
    md5 = "1bec6740b385b3f73800827437f14f85";
  };
  patches = [./makefile.patch];
  buildInputs = [ncurses];
  inherit ncurses;
}