diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 942295f14782..c48aaba6de5f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9905,6 +9905,21 @@ let self = _self // overrides; _self = with self; { }; }; + POSIXstrftimeCompiler = buildPerlModule rec { + name = "POSIX-strftime-Compiler-0.41"; + src = fetchurl { + url = "mirror://cpan/authors/id/K/KA/KAZEBURO/${name}.tar.gz"; + sha256 = "670b89e11500f3808c9e21b1c300089622f68906ff12b1cbfba8e30d3a1c3739"; + }; + # We cannot change timezones on the fly. + prePatch = "rm t/04_tzset.t"; + meta = { + homepage = https://github.com/kazeburo/POSIX-strftime-Compiler; + description = "GNU C library compatible strftime for loggers and servers"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + Readonly = buildPerlModule rec { name = "Readonly-2.01"; src = fetchurl {