nixpkgs/pkgs/tools/system/ts/default.nix
Lluís Batlle i Rossell c66b4ee26d Updating freeimage, and setting me as maintainer on some packages.
svn path=/nixpkgs/trunk/; revision=17584
2009-10-02 07:39:03 +00:00

22 lines
548 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ts-0.6.4";
installPhase=''make install "PREFIX=$out"'';
src = fetchurl {
url = http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.6.4.tar.gz;
sha256 = "caf3e912c150dacc4a182e919ed3eabc1294c5e4e1de333e85d06eea2c0136e3";
};
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;
};
}