about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/procps/default.nix
blob: 7d4be912f3d3b4a495c0d5da7333a12d355b4985 (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://procps.sourceforge.net/procps-3.2.4.tar.gz;
    md5 = "1bec6740b385b3f73800827437f14f85";
  };
  patches = [./makefile.patch];
  buildInputs = [ncurses];
  inherit ncurses;
}