nixpkgs/pkgs/os-specific/linux/psmisc/default.nix

34 lines
992 B
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitLab, autoconf, automake, gettext, ncurses}:
stdenv.mkDerivation rec {
2018-09-26 13:47:45 +00:00
pname = "psmisc";
2019-11-29 03:14:01 +00:00
version = "23.3";
2018-09-26 13:47:45 +00:00
src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = "v${version}";
2019-11-29 03:14:01 +00:00
sha256 = "1132xvrldv0dar2mf221mv5kvajq0v6yrq8k3nl0wslnh5baa0r0";
};
2018-09-26 13:47:45 +00:00
nativeBuildInputs = [ autoconf automake gettext ];
buildInputs = [ ncurses ];
2018-10-12 13:03:50 +00:00
preConfigure = stdenv.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
'' + ''
2018-09-26 13:47:45 +00:00
echo $version > .tarball-version
./autogen.sh
'';
meta = with lib; {
homepage = "https://gitlab.com/psmisc/psmisc";
description = "A set of small useful utilities that use the proc filesystem (such as fuser, killall and pstree)";
2018-09-26 13:47:45 +00:00
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ryantm ];
};
}