2019-05-03 11:53:36 +01:00
|
|
|
{ lib, stdenv, perl, buildPerl, toPerlModule }:
|
2005-01-22 00:19:27 +00:00
|
|
|
|
2019-06-20 14:07:56 +01:00
|
|
|
{ buildInputs ? [], nativeBuildInputs ? [], ... } @ attrs:
|
2005-01-22 00:19:27 +00:00
|
|
|
|
2019-06-20 14:07:56 +01:00
|
|
|
assert attrs?pname -> attrs?version;
|
|
|
|
assert attrs?pname -> !(attrs?name);
|
|
|
|
|
|
|
|
(if attrs ? name then
|
|
|
|
lib.trivial.warn "builtPerlPackage: `name' (\"${attrs.name}\") is deprecated, use `pname' and `version' instead"
|
|
|
|
else
|
|
|
|
(x: x))
|
2019-04-09 15:49:47 +01:00
|
|
|
toPerlModule(stdenv.mkDerivation (
|
2018-07-11 04:43:22 +01:00
|
|
|
(
|
2018-06-26 11:12:14 +01:00
|
|
|
lib.recursiveUpdate
|
2009-02-12 15:56:35 +00:00
|
|
|
{
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "out" "devdoc" ];
|
2013-08-26 11:04:56 +01:00
|
|
|
|
2009-02-12 15:56:35 +00:00
|
|
|
doCheck = true;
|
2013-08-26 11:04:56 +01:00
|
|
|
|
2009-02-12 15:56:35 +00:00
|
|
|
checkTarget = "test";
|
2013-08-26 11:04:56 +01:00
|
|
|
|
2009-07-02 14:54:52 +01:00
|
|
|
# Prevent CPAN downloads.
|
|
|
|
PERL_AUTOINSTALL = "--skipdeps";
|
|
|
|
|
|
|
|
# From http://wiki.cpantesters.org/wiki/CPANAuthorNotes: "allows
|
|
|
|
# authors to skip certain tests (or include certain tests) when
|
|
|
|
# the results are not being monitored by a human being."
|
|
|
|
AUTOMATED_TESTING = true;
|
2018-07-11 04:43:22 +01:00
|
|
|
|
2018-06-26 11:12:14 +01:00
|
|
|
# current directory (".") is removed from @INC in Perl 5.26 but many old libs rely on it
|
|
|
|
# https://metacpan.org/pod/release/XSAWYERX/perl-5.26.0/pod/perldelta.pod#Removal-of-the-current-directory-%28%22.%22%29-from-@INC
|
2018-10-03 20:25:44 +01:00
|
|
|
PERL_USE_UNSAFE_INC = "1";
|
2018-06-26 11:12:14 +01:00
|
|
|
|
2019-06-20 14:07:56 +01:00
|
|
|
meta.homepage = "https://metacpan.org/release/${attrs.pname or (builtins.parseDrvName attrs.name).name}"; # TODO: phase-out `attrs.name`
|
2019-01-18 12:47:58 +00:00
|
|
|
meta.platforms = perl.meta.platforms;
|
2009-02-12 15:56:35 +00:00
|
|
|
}
|
|
|
|
attrs
|
2018-07-11 04:43:22 +01:00
|
|
|
)
|
2009-02-12 15:56:35 +00:00
|
|
|
//
|
|
|
|
{
|
2019-06-20 14:07:56 +01:00
|
|
|
pname = "perl${perl.version}-${attrs.pname or (builtins.parseDrvName attrs.name).name}"; # TODO: phase-out `attrs.name`
|
|
|
|
version = attrs.version or (builtins.parseDrvName attrs.name).version; # TODO: phase-out `attrs.name`
|
2009-02-12 15:56:35 +00:00
|
|
|
builder = ./builder.sh;
|
2019-05-17 05:12:24 +01:00
|
|
|
buildInputs = buildInputs ++ [ perl ];
|
2018-02-28 17:00:03 +00:00
|
|
|
nativeBuildInputs = nativeBuildInputs ++ [ (perl.dev or perl) ];
|
2019-05-03 11:53:36 +01:00
|
|
|
fullperl = buildPerl;
|
2009-02-12 15:56:35 +00:00
|
|
|
}
|
2019-04-09 15:49:47 +01:00
|
|
|
))
|