Files
nixpkgs/pkgs/by-name/ps/psmisc/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitLab,
autoconf,
automake,
gettext,
ncurses,
}:
stdenv.mkDerivation rec {
pname = "psmisc";
version = "23.7";
src = fetchFromGitLab {
owner = "psmisc";
repo = "psmisc";
rev = "v${version}";
hash = "sha256-49YpdIh0DxLHfxos4sw1HUkV0XQBqmm4M9b0T4eN2xI=";
};
nativeBuildInputs = [
autoconf
automake
gettext
];
buildInputs = [ ncurses ];
preConfigure =
lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
# Goes past the rpl_malloc linking failure
export ac_cv_func_malloc_0_nonnull=yes
export ac_cv_func_realloc_0_nonnull=yes
''
+ ''
echo $version > .tarball-version
./autogen.sh
'';
meta = with lib; {
homepage = "https://gitlab.com/psmisc/psmisc";
description = "Set of small useful utilities that use the proc filesystem (such as fuser, killall and pstree)";
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ryantm ];
};
}