* Added psmisc.

svn path=/nixpkgs/trunk/; revision=9905
This commit is contained in:
Eelco Dolstra 2007-12-11 11:47:23 +00:00
parent c301e2dc31
commit 08bf29ef70
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "psmisc-22.6";
src = fetchurl {
url = mirror://sourceforge/psmisc/psmisc-22.6.tar.gz;
sha256 = "0qlx4rdcj3igk67gzmdbyy6f54h4c5ya17gw0pkxdcwlgj4q2g51";
};
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)";
};
}

View File

@ -664,6 +664,10 @@ rec {
inherit (xlibs) libX11;
};
psmisc = import ../tools/misc/psmisc {
inherit stdenv fetchurl ncurses;
};
pwgen = import ../tools/security/pwgen {
inherit stdenv fetchurl;
};