summary refs log tree commit diff
path: root/pkgs/tools/system/ts
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/ts
parent01979f7940b818117a3c4454f836a2684edd68b5 (diff)
downloadnixpkgs-3091c81082de7309e54618ff41a1a426adc86887.tar
nixpkgs-3091c81082de7309e54618ff41a1a426adc86887.tar.gz
nixpkgs-3091c81082de7309e54618ff41a1a426adc86887.tar.bz2
nixpkgs-3091c81082de7309e54618ff41a1a426adc86887.tar.lz
nixpkgs-3091c81082de7309e54618ff41a1a426adc86887.tar.xz
nixpkgs-3091c81082de7309e54618ff41a1a426adc86887.tar.zst
nixpkgs-3091c81082de7309e54618ff41a1a426adc86887.zip
tm (terminal mixer), ts (task spooler) added, provided by viric
svn path=/nixpkgs/trunk/; revision=12688
Diffstat (limited to 'pkgs/tools/system/ts')
-rw-r--r--pkgs/tools/system/ts/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/system/ts/default.nix b/pkgs/tools/system/ts/default.nix
new file mode 100644
index 00000000000..0981446a58e
--- /dev/null
+++ b/pkgs/tools/system/ts/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+
+  name = "ts-0.6";
+
+  installPhase=''make install "PREFIX=$out"'';
+
+  patchPhase = ''sed -i 's@/usr/bin/install@install@g' Makefile; set -x'';
+
+  src = fetchurl {
+    url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.6.tar.gz;
+    sha256 = "663df09f9a6e6491f7924b1cdf8a5d00546c736ec3f5f1135ccccb83bf4f2ce8";
+  };
+
+  meta = { homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
+           description = "task spooler - batch queue";
+           license="GPLv2";
+         };
+}