2008-11-04 21:40:39 +00:00
|
|
|
# restart using 'killall -TERM fcron; fcron -b
|
|
|
|
# use convert-fcrontab to update fcrontab files
|
|
|
|
|
2013-08-23 14:05:49 +01:00
|
|
|
{ stdenv, fetchurl, perl, busybox, vim }:
|
2010-07-30 15:47:23 +01:00
|
|
|
|
2013-08-23 14:05:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-05 21:40:01 +00:00
|
|
|
name = "fcron-${version}";
|
|
|
|
version = "3.2.1";
|
2008-11-04 21:40:39 +00:00
|
|
|
|
2010-07-30 15:47:23 +01:00
|
|
|
src = fetchurl {
|
2013-08-23 14:05:49 +01:00
|
|
|
url = "http://fcron.free.fr/archives/${name}.src.tar.gz";
|
2017-03-05 21:40:01 +00:00
|
|
|
sha256 = "0sjz7r050myj6zgixzx3pk5ff819v6b0zfn0q1lkd19jkaix0531";
|
2008-11-04 21:40:39 +00:00
|
|
|
};
|
|
|
|
|
2010-07-30 15:47:23 +01:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2017-03-05 21:40:01 +00:00
|
|
|
patches = [ ./relative-fcronsighup.patch ];
|
|
|
|
|
2010-07-30 15:47:23 +01:00
|
|
|
configureFlags =
|
2013-08-23 14:05:49 +01:00
|
|
|
[ "--with-sendmail=${busybox}/sbin/sendmail"
|
|
|
|
"--with-editor=${vim}/bin/vi" # TODO customizable
|
2010-07-30 15:47:23 +01:00
|
|
|
"--with-bootinstall=no"
|
2017-03-05 21:40:01 +00:00
|
|
|
"--localstatedir=/var"
|
2010-07-30 15:47:23 +01:00
|
|
|
"--sysconfdir=/etc"
|
2013-08-27 21:22:57 +01:00
|
|
|
"--with-rootname=root"
|
|
|
|
"--with-rootgroup=root"
|
|
|
|
"--disable-checks"
|
2010-07-30 15:47:23 +01:00
|
|
|
];
|
2017-03-05 21:40:01 +00:00
|
|
|
|
2008-11-22 16:57:31 +00:00
|
|
|
installTargets = "install-staged"; # install does also try to change permissions of /etc/* files
|
2017-03-05 21:40:01 +00:00
|
|
|
|
|
|
|
# fcron tries to install pid into system directory on install
|
|
|
|
installFlags = [
|
|
|
|
"ETC=."
|
|
|
|
"PIDDIR=."
|
|
|
|
"PIDFILE=fcron.pid"
|
|
|
|
"REBOOT_LOCK=fcron.reboot"
|
|
|
|
"FIFODIR=."
|
|
|
|
"FIFOFILE=fcron.fifo"
|
|
|
|
"FCRONTABS=."
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's@/usr/bin/env perl@${perl}/bin/perl@g' configure script/*
|
|
|
|
# Don't let fcron create the group fcron, nix(os) should do this
|
|
|
|
sed -i '2s@.*@exit 0@' script/user-group
|
|
|
|
|
|
|
|
# --with-bootinstall=no shoud do this, didn't work. So just exit the script before doing anything
|
|
|
|
sed -i '2s@.*@exit 0@' script/boot-install
|
|
|
|
|
|
|
|
# also don't use chown or chgrp for documentation (or whatever) when installing
|
|
|
|
find -type f | xargs sed -i -e 's@^\(\s\)*chown@\1:@' -e 's@^\(\s\)*chgrp@\1:@'
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-07-30 15:47:23 +01:00
|
|
|
description="A command scheduler with extended capabilities over cron and anacron";
|
|
|
|
homepage = http://fcron.free.fr;
|
2017-03-05 21:40:01 +00:00
|
|
|
license = licenses.gpl2;
|
2017-03-05 22:38:56 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-11-04 21:40:39 +00:00
|
|
|
};
|
|
|
|
}
|