summary refs log tree commit diff
path: root/pkgs/tools/system/ts/default.nix
blob: 185c621f7dd5445d8cd78d02ae7e623567ac4706 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl}:

stdenv.mkDerivation {

  name = "ts-0.6.4";

  installPhase=''make install "PREFIX=$out"'';

  src = fetchurl {
    url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.6.4.tar.gz;
    sha256 = "caf3e912c150dacc4a182e919ed3eabc1294c5e4e1de333e85d06eea2c0136e3";
  };

  meta = { homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
           description = "task spooler - batch queue";
           license="GPLv2";
         };
}