summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-10-02 16:25:59 +0000
committerPeter Simons <simons@cryp.to>2009-10-02 16:25:59 +0000
commit99fe875609b4e6e2e30d0f2d93b1a39cd0e96dd2 (patch)
tree421c0097faf1a849537472da80e2137fb7e7cf42 /pkgs/applications/misc
parente615e1e0de5507efd81d5d9e677c2b99fcc78967 (diff)
pstree: updated to version 2.32; the previous version no longer exists upstream
svn path=/nixpkgs/trunk/; revision=17617
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/pstree/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/misc/pstree/default.nix b/pkgs/applications/misc/pstree/default.nix
index c26876f2fcb4..e642824d4bf0 100644
--- a/pkgs/applications/misc/pstree/default.nix
+++ b/pkgs/applications/misc/pstree/default.nix
@@ -1,21 +1,21 @@
args: with args;
-stdenv.mkDerivation {
- name = "pstree-2.31";
+stdenv.mkDerivation rec {
+ name = "pstree-2.32";
src = fetchurl {
- url = http://fresh.t-systems-sfr.com/unix/src/misc/pstree-2.31.tar.gz;
- sha256 = "1zzz29gsyra8csk54cyq0pcdxxg3l4gmksq8q1skv2z84g2yxdhh";
+ url = "http://fresh.t-systems-sfr.com/unix/src/misc/${name}.tar.gz";
+ sha256 = "0k5r6alnc0ch3frvl5bhh2vi91m6aik10pnjfl86qwkdwsr303az";
};
unpackPhase="unpackFile \$src; sourceRoot=.";
-
+
buildPhase="pwd; gcc -o pstree pstree.c";
installPhase="ensureDir \$out/bin; cp pstree \$out/bin";
- meta = {
+ meta = {
description = "show the running processes as tree";
# don't know the correct homepage..
- homepage = http://fresh.t-systems-sfr.com/unix/src/misc/pstree-2.31.tar.gz;
+ homepage = http://fresh.t-systems-sfr.com/unix/src/misc/pstree-2.32.tar.gz;
license = "GPL";
- };
+ };
}