perl-POSIX-strftime-Compiler: init at 0.41

This commit is contained in:
Pascal Wittmann 2016-03-19 13:27:31 +01:00
parent def056d770
commit 135ef9cc32

View File

@ -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 {