nixpkgs/pkgs/tools/system/ts/default.nix
Lluís Batlle i Rossell 704e085bfc Updating ts version.
svn path=/nixpkgs/trunk/; revision=14150
2009-02-21 17:57:37 +00:00

19 lines
459 B
Nix

{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";
};
}