mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 07:48:58 +00:00
Revert "procps-ng: Refactor a bit"
This reverts commit dceff137e1
. It was
described as a "refactoring", but actually made procps depend on
systemd (which is a heavy dependency) and changed the name of the
package.
This commit is contained in:
parent
d8c9fa5043
commit
fef6141662
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, fetchurl, pkgconfig, ncurses, systemd }:
|
||||
{ lib, stdenv, fetchurl, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "procps-ng-3.3.10";
|
||||
stdenv.mkDerivation {
|
||||
name = "procps-3.3.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/procps-ng/${name}.tar.xz";
|
||||
url = mirror://sourceforge/procps-ng/procps-ng-3.3.10.tar.xz;
|
||||
sha256 = "013z4rzy3p5m1zp6mmynpblv0c6zlcn91pw4k2vymz2djyc6ybm0";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ncurses systemd ];
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
makeFlags = "usrbin_execdir=$(out)/bin";
|
||||
|
||||
|
@ -19,21 +19,13 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
# Too red
|
||||
configureFlags = [
|
||||
"--disable-modern-top"
|
||||
"--enable-watch8bit"
|
||||
"--with-systemd"
|
||||
"--enable-skill"
|
||||
"--enable-oomem"
|
||||
"--enable-sigwinch"
|
||||
];
|
||||
configureFlags = [ "--disable-modern-top" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = {
|
||||
homepage = http://sourceforge.net/projects/procps-ng/;
|
||||
description = "Utilities that give information about processes using the /proc filesystem";
|
||||
priority = 10; # less than coreutils, which also provides "kill" and "uptime"
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue