mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
* Added psmisc.
svn path=/nixpkgs/trunk/; revision=9905
This commit is contained in:
parent
c301e2dc31
commit
08bf29ef70
15
pkgs/tools/misc/psmisc/default.nix
Normal file
15
pkgs/tools/misc/psmisc/default.nix
Normal 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)";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user