nixpkgs/pkgs/os-specific/linux/procps/default.nix
Eelco Dolstra bdabd66a46 * Install ncurses header files in $out/include, not
$out/include/ncurses.  This simplifies many builders.

svn path=/nixpkgs/trunk/; revision=4008
2005-10-04 14:24:19 +00:00

13 lines
295 B
Nix

{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "procps-3.2.5";
builder = ./builder.sh;
src = fetchurl {
url = http://procps.sourceforge.net/procps-3.2.5.tar.gz;
md5 = "cde0e3612d1d7c68f404d46f01c44fb4";
};
patches = [./makefile.patch];
buildInputs = [ncurses];
}