nixpkgs/pkgs/tools/system/ts/default.nix
Lluís Batlle i Rossell 19503ac12a Updating task spooler
svn path=/nixpkgs/trunk/; revision=29809
2011-10-13 08:59:56 +00:00

26 lines
606 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ts-0.7.1";
installPhase=''make install "PREFIX=$out"'';
crossAttrs = {
makeFlags = "CC=${stdenv.cross.config}-gcc";
};
src = fetchurl {
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.7.1.tar.gz;
sha256 = "0s1hrgw99jn6ar01lcvhdgqsw0jzfnbpdayp0pydr6ikx1zwz70v";
};
meta = {
homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
description = "task spooler - batch queue";
license="GPLv2";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}