nixpkgs/pkgs/tools/system/ts/default.nix
Lluís Batlle i Rossell 41c05b47a0 Updating ts to 0.7.6.
2016-03-19 12:23:54 +01:00

31 lines
733 B
Nix

{stdenv, fetchurl,
sendmailPath ? "/var/setuid-wrappers/sendmail" }:
stdenv.mkDerivation rec {
name = "ts-0.7.6";
installPhase=''make install "PREFIX=$out"'';
crossAttrs = {
makeFlags = "CC=${stdenv.cross.config}-gcc";
};
patchPhase = ''
sed -i s,/usr/sbin/sendmail,${sendmailPath}, mail.c ts.1
'';
src = fetchurl {
url = "http://viric.name/~viric/soft/ts/${name}.tar.gz";
sha256 = "07b61sx3hqpdxlg5a1xrz9sxww9yqdix3bmr0sm917r3rzk87lwk";
};
meta = with stdenv.lib; {
homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
description = "task spooler - batch queue";
license = licenses.gpl2;
maintainers = with maintainers; [ viric ];
platforms = platforms.all;
};
}