Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Revert "procps: 3.2.8 -> 3.3.10"

This reverts commit 63675e8c2775932851cdccf2917c1bc11d157145.

This should be the old version.

+11 -6
+11 -6
pkgs/os-specific/linux/procps/default.nix
··· 1 1 { stdenv, fetchurl, ncurses }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "procps-ng-3.3.10"; 4 + name = "procps-3.2.8"; 5 5 6 6 src = fetchurl { 7 - url = "mirror://sourceforge/procps-ng/Production/${name}.tar.xz"; 7 + url = http://procps.sourceforge.net/procps-3.2.8.tar.gz; 8 8 sha256 = "0d8mki0q4yamnkk4533kx8mc0jd879573srxhg6r2fs3lkc6iv8i"; 9 9 }; 10 - 10 + 11 + patches = 12 + [ ./makefile.patch 13 + ./procps-build.patch 14 + ./gnumake3.82.patch 15 + ./linux-ver-init.patch 16 + ]; 17 + 11 18 buildInputs = [ ncurses ]; 12 - 19 + 13 20 makeFlags = "DESTDIR=$(out)"; 14 21 15 22 crossAttrs = { ··· 19 26 meta = { 20 27 homepage = http://procps.sourceforge.net/; 21 28 description = "Utilities that give information about processes using the /proc filesystem"; 22 - platforms = platforms.linux; 23 - maintainers = with maintainers; [ wkennington ]; 24 29 }; 25 30 }