2007-12-11 11:47:23 +00:00
|
|
|
{stdenv, fetchurl, ncurses}:
|
|
|
|
|
2009-06-15 22:43:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-09-20 14:22:08 +01:00
|
|
|
name = "psmisc-23.2";
|
2010-10-25 15:38:45 +01:00
|
|
|
|
2007-12-11 11:47:23 +00:00
|
|
|
src = fetchurl {
|
2017-06-13 13:04:29 +01:00
|
|
|
url = "mirror://sourceforge/psmisc/${name}.tar.xz";
|
2018-09-20 14:22:08 +01:00
|
|
|
sha256 = "0s1kjhrik0wzqbm7hv4gkhywhjrwhp9ajw0ad05fwharikk6ah49";
|
2007-12-11 11:47:23 +00:00
|
|
|
};
|
2010-10-25 15:38:45 +01:00
|
|
|
|
2007-12-11 11:47:23 +00:00
|
|
|
buildInputs = [ncurses];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://psmisc.sourceforge.net/;
|
|
|
|
description = "A set of small useful utilities that use the proc filesystem (such as fuser, killall and pstree)";
|
2010-08-30 00:22:26 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2018-08-06 11:15:43 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2007-12-11 11:47:23 +00:00
|
|
|
};
|
|
|
|
}
|