2010-07-28 11:55:54 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2009-10-02 16:25:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-01-21 10:06:17 +00:00
|
|
|
name = "pstree-2.33";
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2010-01-21 10:06:17 +00:00
|
|
|
url = "http://www.sfr-fresh.com/unix/misc/${name}.tar.gz";
|
|
|
|
sha256 = "1469lrhpy6wghlvbjx6lmvh27rakq00x11cpz4n965fg11i121hg";
|
2007-09-03 12:10:57 +00:00
|
|
|
};
|
|
|
|
|
2010-07-28 11:55:54 +00:00
|
|
|
unpackPhase = "unpackFile \$src; sourceRoot=.";
|
2009-10-02 16:25:59 +00:00
|
|
|
|
2010-07-28 11:55:54 +00:00
|
|
|
buildPhase = "pwd; gcc -o pstree pstree.c";
|
2012-01-18 20:16:00 +00:00
|
|
|
installPhase = "mkdir -p \$out/bin; cp pstree \$out/bin";
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2009-10-02 16:25:59 +00:00
|
|
|
meta = {
|
2010-07-28 11:55:54 +00:00
|
|
|
description = "Show the set of running processes as a tree";
|
|
|
|
license = "GPL";
|
|
|
|
};
|
2007-09-03 12:10:57 +00:00
|
|
|
}
|