mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
34 lines
992 B
Nix
34 lines
992 B
Nix
{stdenv, fetchFromGitLab, autoconf, automake, gettext, ncurses}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "psmisc";
|
|
version = "23.3";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1132xvrldv0dar2mf221mv5kvajq0v6yrq8k3nl0wslnh5baa0r0";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake gettext ];
|
|
buildInputs = [ ncurses ];
|
|
|
|
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
|
|
'' + ''
|
|
echo $version > .tarball-version
|
|
./autogen.sh
|
|
'';
|
|
|
|
meta = with stdenv.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)";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ ryantm ];
|
|
};
|
|
}
|