mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 22:14:34 +00:00
e03984abda
svn path=/nixpkgs/trunk/; revision=2081
14 lines
314 B
Nix
14 lines
314 B
Nix
{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;
|
|
}
|