about summary refs log tree commit diff
path: root/pkgs/applications/misc/pstree
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2019-05-05 17:51:52 +0200
committerLassulus <github@lassul.us>2019-05-08 02:53:09 +0900
commit4f8bf685f83c2e3ed15840e39578fed479257c17 (patch)
tree26b6dbc00de0dc6db30d8665e521e92e08600d08 /pkgs/applications/misc/pstree
parent715002eaf7f51b3122867b982cc1e82d010cb08e (diff)
pstree: remove and alias to psmisc
Diffstat (limited to 'pkgs/applications/misc/pstree')
-rw-r--r--pkgs/applications/misc/pstree/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/applications/misc/pstree/default.nix b/pkgs/applications/misc/pstree/default.nix
deleted file mode 100644
index 3cd52af6d3218..0000000000000
--- a/pkgs/applications/misc/pstree/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  name = "pstree-2.39";
-
-  src = fetchurl {
-    urls = [
-      "http://www.sfr-fresh.com/unix/misc/${name}.tar.gz"
-      "https://distfiles.macports.org/pstree/${name}.tar.gz"
-    ];
-    sha256 = "17s7v15c4gryjpi11y1xq75022nkg4ggzvjlq2dkmyg67ssc76vw";
-  };
-
-  unpackPhase = "unpackFile \$src; sourceRoot=.";
-
-  buildPhase = "pwd; $CC -o pstree pstree.c";
-  installPhase = "mkdir -p \$out/bin; cp pstree \$out/bin";
-
-  meta = {
-    description = "Show the set of running processes as a tree";
-    license = "GPL";
-    maintainers = [ ];
-    platforms = stdenv.lib.platforms.unix;
-  };
-}