about summary refs log tree commit diff
path: root/pkgs/tools/system/ts/default.nix
blob: 0981446a58e42d0efd32f1aff4a8b06c20e0f3f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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";
         };
}