1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00
nixpkgs/pkgs/os-specific/linux/procps/default.nix
William A. Kennington III 23c73808ac Revert "procps: 3.2.8 -> 3.3.10"
This reverts commit 63675e8c27.

This should be the old version.
2015-03-27 10:52:14 -07:00

31 lines
656 B
Nix

{ stdenv, fetchurl, ncurses }:
stdenv.mkDerivation {
name = "procps-3.2.8";
src = fetchurl {
url = http://procps.sourceforge.net/procps-3.2.8.tar.gz;
sha256 = "0d8mki0q4yamnkk4533kx8mc0jd879573srxhg6r2fs3lkc6iv8i";
};
patches =
[ ./makefile.patch
./procps-build.patch
./gnumake3.82.patch
./linux-ver-init.patch
];
buildInputs = [ ncurses ];
makeFlags = "DESTDIR=$(out)";
crossAttrs = {
CC = stdenv.cross.config + "-gcc";
};
meta = {
homepage = http://procps.sourceforge.net/;
description = "Utilities that give information about processes using the /proc filesystem";
};
}