nixpkgs/pkgs/tools/system/ts/default.nix
Lluís Batlle i Rossell a887c8c2c7 Updating task spooler to 0.7.3
svn path=/nixpkgs/trunk/; revision=34251
2012-05-27 11:15:01 +00:00

26 lines
606 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ts-0.7.3";
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.3.tar.gz;
sha256 = "1ajgk6y9y9bng5ssdqxwpzw44pmib30vn5284rgga6vr04ppakdy";
};
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;
};
}