nixpkgs/pkgs/by-name/fc/fcron/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

69 lines
1.8 KiB
Nix

# restart using 'killall -TERM fcron; fcron -b
# use convert-fcrontab to update fcrontab files
{
lib,
stdenv,
fetchurl,
perl,
busybox,
vim,
}:
stdenv.mkDerivation rec {
pname = "fcron";
version = "3.3.1";
src = fetchurl {
url = "http://fcron.free.fr/archives/${pname}-${version}.src.tar.gz";
sha256 = "sha256-81naoIpj3ft/4vlkuz9cUiRMJao2+SJaPMVNNvRoEQY=";
};
buildInputs = [ perl ];
patches = [ ./relative-fcronsighup.patch ];
configureFlags = [
"--with-sendmail=${busybox}/sbin/sendmail"
"--with-editor=${vim}/bin/vi" # TODO customizable
"--with-bootinstall=no"
"--localstatedir=/var"
"--sysconfdir=/etc"
"--with-rootname=root"
"--with-rootgroup=root"
"--disable-checks"
];
installTargets = [ "install-staged" ]; # install does also try to change permissions of /etc/* files
# 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 lib; {
description = "Command scheduler with extended capabilities over cron and anacron";
homepage = "http://fcron.free.fr";
license = licenses.gpl2Plus;
platforms = lib.platforms.all;
};
}