nixpkgs/pkgs/tools/system/ts/default.nix
Lluís Batlle i Rossell 39cea05305 Updating task spooler from 0.6.2 to 0.6.3.
svn path=/nixpkgs/trunk/; revision=14120
2009-02-18 22:45:01 +00:00

19 lines
459 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ts-0.6.3";
installPhase=''make install "PREFIX=$out"'';
src = fetchurl {
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.6.3.tar.gz;
sha256 = "70d9dd20e8f7cb45336c9eee048d47ff3c6cd3fdd2b36c88035c460515e7004f";
};
meta = { homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
description = "task spooler - batch queue";
license="GPLv2";
};
}