2008-08-21 14:35:14 -07:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2012-05-27 04:15:01 -07:00
|
|
|
name = "ts-0.7.3";
|
2008-08-21 14:35:14 -07:00
|
|
|
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
|
2010-11-26 06:12:10 -08:00
|
|
|
crossAttrs = {
|
|
|
|
makeFlags = "CC=${stdenv.cross.config}-gcc";
|
|
|
|
};
|
|
|
|
|
2008-08-21 14:35:14 -07:00
|
|
|
src = fetchurl {
|
2012-05-27 04:15:01 -07:00
|
|
|
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.7.3.tar.gz;
|
|
|
|
sha256 = "1ajgk6y9y9bng5ssdqxwpzw44pmib30vn5284rgga6vr04ppakdy";
|
2008-08-21 14:35:14 -07:00
|
|
|
};
|
|
|
|
|
2009-10-02 00:39:03 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
|
|
|
|
description = "task spooler - batch queue";
|
|
|
|
license="GPLv2";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2010-03-05 15:26:49 -08:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-10-02 00:39:03 -07:00
|
|
|
};
|
2008-08-21 14:35:14 -07:00
|
|
|
}
|