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

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