nixpkgs/pkgs/os-specific/linux/procps-ng/default.nix

33 lines
837 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses }:
2017-04-11 09:55:36 +00:00
stdenv.mkDerivation rec {
name = "procps-${version}";
version = "3.3.12";
src = fetchurl {
2017-04-11 09:55:36 +00:00
url = "mirror://sourceforge/procps-ng/procps-ng-${version}.tar.xz";
sha256 = "1m57w6jmry84njd5sgk5afycbglql0al80grx027kwqqcfw5mmkf";
};
buildInputs = [ ncurses ];
makeFlags = "usrbin_execdir=$(out)/bin";
enableParallelBuilding = true;
crossAttrs = {
CC = stdenv.cross.config + "-gcc";
};
2014-10-22 19:21:01 +00:00
# Too red
configureFlags = [ "--disable-modern-top" ];
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"
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
}