2008-08-21 23:35:14 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2012-05-27 13:15:01 +02:00
|
|
|
name = "ts-0.7.3";
|
2008-08-21 23:35:14 +02:00
|
|
|
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
|
2010-11-26 15:12:10 +01:00
|
|
|
crossAttrs = {
|
|
|
|
makeFlags = "CC=${stdenv.cross.config}-gcc";
|
|
|
|
};
|
|
|
|
|
2008-08-21 23:35:14 +02:00
|
|
|
src = fetchurl {
|
2012-05-27 13:15:01 +02:00
|
|
|
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.7.3.tar.gz;
|
|
|
|
sha256 = "1ajgk6y9y9bng5ssdqxwpzw44pmib30vn5284rgga6vr04ppakdy";
|
2008-08-21 23:35:14 +02:00
|
|
|
};
|
|
|
|
|
2009-10-02 09:39:03 +02: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-06 00:26:49 +01:00
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2009-10-02 09:39:03 +02:00
|
|
|
};
|
2008-08-21 23:35:14 +02:00
|
|
|
}
|