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