Moved tools/misc/psmisc to os-specific/linux/psmisc.

svn path=/nixpkgs/trunk/; revision=24469
This commit is contained in:
Peter Simons
2010-10-25 14:38:37 +00:00
parent 90490b0603
commit ef4a03f3da
2 changed files with 1 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation rec {
name = "psmisc-22.12";
src = fetchurl {
url = "mirror://sourceforge/psmisc/${name}.tar.gz";
sha256 = "0ykak6gf835xj0wksqbw2rjny958prayhm2fv6r3fqfs06jl2bxs";
};
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)";
platforms = stdenv.lib.platforms.linux;
};
}