2010-10-10 11:07:15 +00:00
|
|
|
{stdenv, fetchurl, sendmailPath ? "/usr/sbin/sendmail"}:
|
2007-01-10 15:44:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "cron-4.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = ftp://ftp.isc.org/isc/cron/cron_4.1.shar;
|
|
|
|
md5 = "5e1be9dbde66295821ac7899f2e1f561";
|
|
|
|
};
|
|
|
|
|
2008-08-27 15:22:33 +00:00
|
|
|
unpackCmd = "(mkdir cron && cd cron && sh $curSrc)";
|
2007-01-10 15:44:58 +00:00
|
|
|
|
2010-10-10 11:07:15 +00:00
|
|
|
preBuild = ''
|
2008-02-15 11:14:40 +00:00
|
|
|
substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755
|
2010-10-10 11:07:15 +00:00
|
|
|
makeFlags="DESTROOT=$out"
|
|
|
|
|
|
|
|
# We want to ignore the $glibc/include/paths.h definition of
|
|
|
|
# sendmail path
|
|
|
|
echo "#undef _PATH_SENDMAIL" >> pathnames.h
|
|
|
|
echo '#define _PATH_SENDMAIL "${sendmailPath}"' >> pathnames.h
|
|
|
|
'';
|
2007-01-10 15:44:58 +00:00
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
|
2007-01-10 15:44:58 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Daemon for running commands at specific times (Vixie Cron)";
|
2007-01-10 15:44:58 +00:00
|
|
|
};
|
|
|
|
}
|