2008-08-21 23:35:14 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2011-12-07 16:26:34 +01:00
|
|
|
name = "ts-0.7.2";
|
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 {
|
2011-12-07 16:26:34 +01:00
|
|
|
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.7.2.tar.gz;
|
|
|
|
sha256 = "08f9ipg98d6ygzb4fzdm1z157llzh4akipmq14ycfd7l023vidik";
|
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
|
|
|
}
|