summary refs log tree commit diff
path: root/pkgs/tools/system/tm/default.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-08-21 21:35:14 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-08-21 21:35:14 +0000
commit3091c81082de7309e54618ff41a1a426adc86887 (patch)
treeccb1f69f5bf5e1748336c9d9c0be1d3b8a675d93 /pkgs/tools/system/tm/default.nix
parent01979f7940b818117a3c4454f836a2684edd68b5 (diff)
tm (terminal mixer), ts (task spooler) added, provided by viric
svn path=/nixpkgs/trunk/; revision=12688
Diffstat (limited to 'pkgs/tools/system/tm/default.nix')
-rw-r--r--pkgs/tools/system/tm/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/system/tm/default.nix b/pkgs/tools/system/tm/default.nix
new file mode 100644
index 0000000000000..2c854a929d513
--- /dev/null
+++ b/pkgs/tools/system/tm/default.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+
+  name = "tm-0.4.1";
+
+  installPhase=''make install "PREFIX=$out"'';
+
+  patchPhase = ''sed -i 's@/usr/bin/install@install@g' Makefile'';
+
+  src = fetchurl {
+    url = http://vicerveza.homeunix.net/~viric/soft/tm/tm-0.4.1.tar.gz;
+    sha256 = "3b389bc03b6964ad5ffa57a344b891fdbcf7c9b2604adda723a863f83657c4a0";
+  };
+
+  meta = { homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
+           description = "terminal mixer - multiplexer for the i/o of terminal applications";
+           license="GPLv2";
+         };
+
+}