nixpkgs/pkgs/tools/system/ts/default.nix
Lluís Batlle i Rossell e571333232 Making ts and tm crossbuild
svn path=/nixpkgs/branches/stdenv-updates/; revision=24870
2010-11-26 14:12:10 +00:00

26 lines
606 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ts-0.6.6";
installPhase=''make install "PREFIX=$out"'';
crossAttrs = {
makeFlags = "CC=${stdenv.cross.config}-gcc";
};
src = fetchurl {
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.6.6.tar.gz;
sha256 = "0mdg123ppq8ibf4315l4qi0w3n7wlj4x8dq5gx8f680v4bjvc30g";
};
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;
};
}