8863466ce7
svn path=/nixpkgs/trunk/; revision=4363
13 lines
318 B
Nix
13 lines
318 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "procps-3.2.6";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://procps.sourceforge.net/procps-3.2.6.tar.gz;
|
|
md5 = "7ce39ea27d7b3da0e8ad74dd41d06783";
|
|
};
|
|
patches = [./makefile.patch ./procps-no-kill.patch];
|
|
buildInputs = [ncurses];
|
|
}
|