87 lines
2.2 KiB
Nix
87 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
fetchpatch2,
|
|
stdenv,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
ncurses,
|
|
IOKit,
|
|
libcap,
|
|
libnl,
|
|
sensorsSupport ? stdenv.hostPlatform.isLinux,
|
|
lm_sensors,
|
|
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
|
systemd,
|
|
}:
|
|
|
|
assert systemdSupport -> stdenv.hostPlatform.isLinux;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "htop";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "htop-dev";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-qDhQkzY2zj2yxbgFUXwE0MGEgAFOsAhnapUuetO9WTw=";
|
|
};
|
|
|
|
patches = [
|
|
# See https://github.com/htop-dev/htop/pull/1412
|
|
# Remove when updating to 3.4.0
|
|
(fetchpatch2 {
|
|
name = "htop-resolve-configuration-path.patch";
|
|
url = "https://github.com/htop-dev/htop/commit/0dac8e7d38ec3aeae901a987717b5177986197e4.patch";
|
|
hash = "sha256-Er1d/yV1fioYfEmXNlLO5ayAyXkyy+IaGSx1KWXvlv0=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ] ++ lib.optional stdenv.hostPlatform.isLinux pkg-config;
|
|
|
|
buildInputs =
|
|
[ ncurses ]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin IOKit
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
libcap
|
|
libnl
|
|
]
|
|
++ lib.optional sensorsSupport lm_sensors
|
|
++ lib.optional systemdSupport systemd;
|
|
|
|
configureFlags =
|
|
[
|
|
"--enable-unicode"
|
|
"--sysconfdir=/etc"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
"--enable-affinity"
|
|
"--enable-capabilities"
|
|
"--enable-delayacct"
|
|
]
|
|
++ lib.optional sensorsSupport "--enable-sensors";
|
|
|
|
postFixup =
|
|
let
|
|
optionalPatch = pred: so: lib.optionalString pred "patchelf --add-needed ${so} $out/bin/htop";
|
|
in
|
|
lib.optionalString (!stdenv.hostPlatform.isStatic) ''
|
|
${optionalPatch sensorsSupport "${lm_sensors}/lib/libsensors.so"}
|
|
${optionalPatch systemdSupport "${systemd}/lib/libsystemd.so"}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Interactive process viewer";
|
|
homepage = "https://htop.dev";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [
|
|
rob
|
|
relrod
|
|
SuperSandro2000
|
|
];
|
|
changelog = "https://github.com/htop-dev/htop/blob/${version}/ChangeLog";
|
|
mainProgram = "htop";
|
|
};
|
|
}
|