2021-03-10 23:10:06 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
|
|
|
|
, ncurses
|
|
|
|
|
, pkg-config
|
2024-03-24 00:38:18 +00:00
|
|
|
|
, autoreconfHook
|
2018-07-08 23:19:01 +00:00
|
|
|
|
|
2021-03-10 23:10:06 +00:00
|
|
|
|
# `ps` with systemd support is able to properly report different
|
|
|
|
|
# attributes like unit name, so we want to have it on linux.
|
2022-09-21 07:04:52 +00:00
|
|
|
|
, withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
|
2021-03-10 23:10:06 +00:00
|
|
|
|
, systemd
|
2018-07-27 08:41:42 +00:00
|
|
|
|
|
2021-03-10 23:10:06 +00:00
|
|
|
|
# procps is mostly Linux-only. Most commands require a running Linux
|
|
|
|
|
# system (or very similar like that found in Cygwin). The one
|
|
|
|
|
# exception is ‘watch’ which is portable enough to run on pretty much
|
|
|
|
|
# any UNIX-compatible system.
|
2018-07-27 08:41:42 +00:00
|
|
|
|
, watchOnly ? !(stdenv.hostPlatform.isLinux || stdenv.hostPlatform.isCygwin)
|
2024-04-16 16:58:38 +00:00
|
|
|
|
|
|
|
|
|
, binlore
|
|
|
|
|
, procps
|
2018-07-27 08:41:42 +00:00
|
|
|
|
}:
|
2013-01-23 16:12:20 +00:00
|
|
|
|
|
2017-04-11 09:55:36 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
pname = "procps";
|
2024-03-24 00:38:18 +00:00
|
|
|
|
version = "4.0.4";
|
2013-01-23 16:12:20 +00:00
|
|
|
|
|
2018-04-26 14:21:58 +00:00
|
|
|
|
# The project's releases are on SF, but git repo on gitlab.
|
2018-04-19 18:10:34 +00:00
|
|
|
|
src = fetchurl {
|
2018-04-26 14:21:58 +00:00
|
|
|
|
url = "mirror://sourceforge/procps-ng/procps-ng-${version}.tar.xz";
|
2024-03-24 00:38:18 +00:00
|
|
|
|
hash = "sha256-IocNb+skeK22F85PCaeHrdry0mDFqKp7F9iJqWLF5C4=";
|
2013-01-23 16:12:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-07-27 08:41:42 +00:00
|
|
|
|
buildInputs = [ ncurses ]
|
|
|
|
|
++ lib.optional withSystemd systemd;
|
2024-03-24 00:38:18 +00:00
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2013-01-23 16:12:20 +00:00
|
|
|
|
|
2018-07-08 17:42:21 +00:00
|
|
|
|
makeFlags = [ "usrbin_execdir=$(out)/bin" ]
|
2024-10-17 09:32:42 +00:00
|
|
|
|
++ lib.optionals watchOnly [ "src/watch" ];
|
2013-01-23 16:12:20 +00:00
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2023-12-18 20:06:23 +00:00
|
|
|
|
# Too red; 8bit support for fixing https://github.com/NixOS/nixpkgs/issues/275220
|
|
|
|
|
configureFlags = [ "--disable-modern-top" "--enable-watch8bit" ]
|
2018-07-27 08:41:42 +00:00
|
|
|
|
++ lib.optional withSystemd "--with-systemd"
|
2024-03-24 00:38:18 +00:00
|
|
|
|
++ lib.optional stdenv.hostPlatform.isMusl "--disable-w"
|
2021-03-10 23:10:06 +00:00
|
|
|
|
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
|
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
|
|
|
|
];
|
2015-06-19 12:13:25 +00:00
|
|
|
|
|
2021-03-10 23:10:06 +00:00
|
|
|
|
installPhase = lib.optionalString watchOnly ''
|
2024-10-17 09:32:42 +00:00
|
|
|
|
install -m 0755 -D src/watch $out/bin/watch
|
|
|
|
|
install -m 0644 -D man/watch.1 $out/share/man/man1/watch.1
|
2021-03-10 23:10:06 +00:00
|
|
|
|
'';
|
2018-07-08 17:42:21 +00:00
|
|
|
|
|
2024-04-16 16:58:38 +00:00
|
|
|
|
# no obvious exec in documented arguments; haven't trawled source
|
|
|
|
|
# to figure out what exec binlore hits on
|
|
|
|
|
passthru.binlore.out = binlore.synthesize procps ''
|
|
|
|
|
execer cannot bin/{ps,top,free}
|
|
|
|
|
'';
|
|
|
|
|
|
2021-03-10 23:10:06 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
|
homepage = "https://gitlab.com/procps-ng/procps";
|
2013-01-23 16:12:20 +00:00
|
|
|
|
description = "Utilities that give information about processes using the /proc filesystem";
|
2019-05-08 11:18:54 +00:00
|
|
|
|
priority = 11; # less than coreutils, which also provides "kill" and "uptime"
|
2024-05-26 12:16:07 +00:00
|
|
|
|
license = licenses.gpl2Plus;
|
2021-03-10 23:10:06 +00:00
|
|
|
|
platforms = platforms.unix;
|
2024-06-30 16:48:49 +00:00
|
|
|
|
maintainers = [ ];
|
2013-01-23 16:12:20 +00:00
|
|
|
|
};
|
|
|
|
|
}
|