2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2009-10-02 09:25:59 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-18 02:50:46 -07:00
|
|
|
name = "pstree-2.39";
|
2007-09-03 05:10:57 -07:00
|
|
|
|
2008-01-30 09:20:48 -08:00
|
|
|
src = fetchurl {
|
2016-02-13 23:36:25 -08:00
|
|
|
urls = [
|
|
|
|
"http://www.sfr-fresh.com/unix/misc/${name}.tar.gz"
|
|
|
|
"http://distfiles.macports.org/pstree/${name}.tar.gz"
|
|
|
|
];
|
2015-08-18 02:50:46 -07:00
|
|
|
sha256 = "17s7v15c4gryjpi11y1xq75022nkg4ggzvjlq2dkmyg67ssc76vw";
|
2007-09-03 05:10:57 -07:00
|
|
|
};
|
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
unpackPhase = "unpackFile \$src; sourceRoot=.";
|
2009-10-02 09:25:59 -07:00
|
|
|
|
2015-01-28 03:35:54 -08:00
|
|
|
buildPhase = "pwd; $CC -o pstree pstree.c";
|
2012-01-18 12:16:00 -08:00
|
|
|
installPhase = "mkdir -p \$out/bin; cp pstree \$out/bin";
|
2007-09-03 05:10:57 -07:00
|
|
|
|
2009-10-02 09:25:59 -07:00
|
|
|
meta = {
|
2010-07-28 04:55:54 -07:00
|
|
|
description = "Show the set of running processes as a tree";
|
|
|
|
license = "GPL";
|
2018-01-16 21:13:23 -08:00
|
|
|
maintainers = [ ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-07-28 04:55:54 -07:00
|
|
|
};
|
2007-09-03 05:10:57 -07:00
|
|
|
}
|