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

31 lines
808 B
Nix
Raw Normal View History

2018-09-26 13:47:45 +00:00
{stdenv, fetchFromGitLab, autoconf, automake, gettext, ncurses}:
stdenv.mkDerivation rec {
2018-09-26 13:47:45 +00:00
pname = "psmisc";
version = "23.2";
name = "${pname}-${version}";
2018-09-26 13:47:45 +00:00
src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "0d90wmibxpkl0d7sdibvvkwpyxyg6m6ksh5gwrjh15vf1swvd5i1";
};
2018-09-26 13:47:45 +00:00
nativeBuildInputs = [ autoconf automake gettext ];
buildInputs = [ ncurses ];
2018-09-26 13:47:45 +00:00
preConfigure = ''
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)";
2018-09-26 13:47:45 +00:00
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ryantm ];
};
}