2008-08-21 23:35:14 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2009-10-02 21:05:29 +02:00
|
|
|
name = "ts-0.6.5";
|
2008-08-21 23:35:14 +02:00
|
|
|
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
|
|
|
|
src = fetchurl {
|
2009-10-02 21:05:29 +02:00
|
|
|
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.6.5.tar.gz;
|
|
|
|
sha256 = "1yqajk26lx817fbwpx3hfkvxzrxnr9v6l0smnm1sz7f5bdxar3f0";
|
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];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2008-08-21 23:35:14 +02:00
|
|
|
}
|