571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ fetchurl, lib, stdenv, guile, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mcron";
|
|
version = "1.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/mcron/mcron-${version}.tar.gz";
|
|
sha256 = "0bkn235g2ia4f7ispr9d55c7bc18282r3qd8ldhh5q2kiin75zi0";
|
|
};
|
|
|
|
# don't attempt to chmod +s files in the nix store
|
|
postPatch = ''
|
|
sed -E -i '/chmod u\+s/d' Makefile.in
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ guile ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Flexible implementation of `cron' in Guile";
|
|
|
|
longDescription = ''
|
|
The GNU package mcron (Mellor's cron) is a 100% compatible
|
|
replacement for Vixie cron. It is written in pure Guile, and
|
|
allows configuration files to be written in scheme (as well as
|
|
Vixie's original format) for infinite flexibility in specifying
|
|
when jobs should be run. Mcron was written by Dale Mellor.
|
|
'';
|
|
|
|
homepage = "https://www.gnu.org/software/mcron/";
|
|
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|