28 lines
658 B
Nix
28 lines
658 B
Nix
{ stdenv, fetchurl
|
|
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ts-1.0";
|
|
|
|
installPhase=''make install "PREFIX=$out"'';
|
|
|
|
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 = "15dkzczx10fhl0zs9bmcgkxfbwq2znc7bpscljm4rchbzx7y6lsg";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|