2010-10-10 12:07:15 +01: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;
|
2014-10-12 15:13:21 +01:00
|
|
|
sha256 = "16n3dras4b1jh7g958nz1k54pl9pg5fwb3fvjln8z67varvq6if4";
|
2007-01-10 15:44:58 +00:00
|
|
|
};
|
|
|
|
|
2008-08-27 16:22:33 +01:00
|
|
|
unpackCmd = "(mkdir cron && cd cron && sh $curSrc)";
|
2007-01-10 15:44:58 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 17:27:28 +00:00
|
|
|
|
2010-10-10 12:07:15 +01:00
|
|
|
preBuild = ''
|
2017-06-17 10:37:21 +01:00
|
|
|
# do not set sticky bit in /nix/store
|
2017-06-16 12:44:14 +01:00
|
|
|
substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755 --replace 4755 0755
|
2017-04-21 05:45:29 +01:00
|
|
|
makeFlags="DESTROOT=$out CC=cc"
|
2010-10-10 12:07:15 +01:00
|
|
|
|
|
|
|
# We want to ignore the $glibc/include/paths.h definition of
|
2016-06-26 16:13:15 +01:00
|
|
|
# sendmail path.
|
|
|
|
# Also set a usable default PATH (#16518).
|
|
|
|
cat >> pathnames.h <<__EOT__
|
|
|
|
#undef _PATH_SENDMAIL
|
|
|
|
#define _PATH_SENDMAIL "${sendmailPath}"
|
|
|
|
|
|
|
|
#undef _PATH_DEFPATH
|
2017-05-09 08:46:24 +01:00
|
|
|
#define _PATH_DEFPATH "/run/wrappers/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:/usr/bin:/bin"
|
2016-06-26 16:13:15 +01:00
|
|
|
__EOT__
|
|
|
|
|
|
|
|
# Implicit saved uids do not work here due to way NixOS uses setuid wrappers
|
|
|
|
# (#16518).
|
|
|
|
echo "#undef HAVE_SAVED_UIDS" >> externs.h
|
2010-10-10 12:07:15 +01:00
|
|
|
'';
|
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";
|
2015-03-20 15:52:02 +00:00
|
|
|
|
2007-01-10 15:44:58 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Daemon for running commands at specific times (Vixie Cron)";
|
2017-04-21 05:45:29 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2007-01-10 15:44:58 +00:00
|
|
|
};
|
|
|
|
}
|