1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/procps/default.nix
Eelco Dolstra 454707da23 * catamaran.labs.cs.uu.nl -> nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=3660
2005-08-22 08:39:27 +00:00

14 lines
318 B
Nix

{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "procps-3.2.4";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/procps-3.2.4.tar.gz;
md5 = "1bec6740b385b3f73800827437f14f85";
};
patches = [./makefile.patch];
buildInputs = [ncurses];
inherit ncurses;
}