2010-10-10 13:07:15 +02:00
|
|
|
{stdenv, fetchurl, sendmailPath ? "/usr/sbin/sendmail"}:
|
2007-01-10 16:44:58 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "cron-4.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = ftp://ftp.isc.org/isc/cron/cron_4.1.shar;
|
2014-10-12 16:13:21 +02:00
|
|
|
sha256 = "16n3dras4b1jh7g958nz1k54pl9pg5fwb3fvjln8z67varvq6if4";
|
2007-01-10 16:44:58 +01:00
|
|
|
};
|
|
|
|
|
2008-08-27 17:22:33 +02:00
|
|
|
unpackCmd = "(mkdir cron && cd cron && sh $curSrc)";
|
2007-01-10 16:44:58 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 18:27:28 +01:00
|
|
|
|
2010-10-10 13:07:15 +02:00
|
|
|
preBuild = ''
|
2017-06-17 11:37:21 +02:00
|
|
|
# do not set sticky bit in /nix/store
|
2017-06-16 13:44:14 +02:00
|
|
|
substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755 --replace 4755 0755
|
2017-04-21 06:45:29 +02:00
|
|
|
makeFlags="DESTROOT=$out CC=cc"
|
2010-10-10 13:07:15 +02:00
|
|
|
|
|
|
|
# We want to ignore the $glibc/include/paths.h definition of
|
2016-06-26 17:13:15 +02: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 09:46:24 +02:00
|
|
|
#define _PATH_DEFPATH "/run/wrappers/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:/usr/bin:/bin"
|
2016-06-26 17:13:15 +02: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 13:07:15 +02:00
|
|
|
'';
|
2007-01-10 16:44:58 +01:00
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
|
2015-03-20 16:52:02 +01:00
|
|
|
|
2007-01-10 16:44:58 +01:00
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Daemon for running commands at specific times (Vixie Cron)";
|
2017-04-21 06:45:29 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2007-01-10 16:44:58 +01:00
|
|
|
};
|
|
|
|
}
|