2019-05-08 16:09:19 +02:00
|
|
|
{ config, lib, stdenv, fetchurl, pkgs, buildPackages, callPackage
|
2019-11-20 14:06:27 +01:00
|
|
|
, enableThreading ? true, coreutils, makeWrapper
|
2018-02-28 18:00:03 +01:00
|
|
|
}:
|
2016-02-27 22:04:47 +01:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
libc = if stdenv.cc.libc or null != null then stdenv.cc.libc else "/usr";
|
2016-04-14 18:00:39 +02:00
|
|
|
libcInc = lib.getDev libc;
|
|
|
|
libcLib = lib.getLib libc;
|
2017-10-16 04:34:20 +02:00
|
|
|
crossCompiling = stdenv.buildPlatform != stdenv.hostPlatform;
|
2019-04-09 16:49:47 +02:00
|
|
|
|
2019-05-08 16:09:19 +02:00
|
|
|
common = { perl, buildPerl, version, sha256 }: stdenv.mkDerivation (rec {
|
2018-06-27 15:37:36 +02:00
|
|
|
inherit version;
|
|
|
|
|
2016-02-27 22:04:47 +01:00
|
|
|
name = "perl-${version}";
|
|
|
|
|
2018-11-17 18:23:24 +01:00
|
|
|
src = fetchurl {
|
2016-02-27 22:04:47 +01:00
|
|
|
url = "mirror://cpan/src/5.0/${name}.tar.gz";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2016-03-07 22:03:07 +01:00
|
|
|
# TODO: Add a "dev" output containing the header files.
|
2018-02-28 18:00:03 +01:00
|
|
|
outputs = [ "out" "man" "devdoc" ] ++
|
2019-08-02 03:27:55 +02:00
|
|
|
optional crossCompiling "dev";
|
2016-03-07 22:03:07 +01:00
|
|
|
setOutputFlags = false;
|
2016-02-27 22:04:47 +01:00
|
|
|
|
2018-09-23 07:28:23 +02:00
|
|
|
disallowedReferences = [ stdenv.cc ];
|
|
|
|
|
2016-02-27 22:04:47 +01:00
|
|
|
patches =
|
2018-10-03 21:25:44 +02:00
|
|
|
[
|
|
|
|
# Do not look in /usr etc. for dependencies.
|
2019-08-06 11:37:23 +02:00
|
|
|
(if (versionOlder version "5.29.6") then ./no-sys-dirs-5.26.patch
|
|
|
|
else if (versionOlder version "5.31.1") then ./no-sys-dirs-5.29.patch
|
|
|
|
else ./no-sys-dirs-5.31.patch)
|
2019-01-01 19:08:44 +01:00
|
|
|
]
|
|
|
|
++ optional (versionOlder version "5.29.6")
|
2017-12-06 23:20:56 +01:00
|
|
|
# Fix parallel building: https://rt.perl.org/Public/Bug/Display.html?id=132360
|
2018-11-17 18:23:24 +01:00
|
|
|
(fetchurl {
|
2017-12-06 23:20:56 +01:00
|
|
|
url = "https://rt.perl.org/Public/Ticket/Attachment/1502646/807252/0001-Fix-missing-build-dependency-for-pods.patch";
|
|
|
|
sha256 = "1bb4mldfp8kq1scv480wm64n2jdsqa3ar46cjp1mjpby8h5dr2r0";
|
|
|
|
})
|
2016-02-27 22:04:47 +01:00
|
|
|
++ optional stdenv.isSunOS ./ld-shared.patch
|
2018-10-03 22:34:04 +02:00
|
|
|
++ optionals stdenv.isDarwin [ ./cpp-precomp.patch ./sw_vers.patch ]
|
2018-02-28 18:00:03 +01:00
|
|
|
++ optional crossCompiling ./MakeMaker-cross.patch;
|
2016-02-27 22:04:47 +01:00
|
|
|
|
2019-08-02 03:27:55 +02:00
|
|
|
# This is not done for native builds because pwd may need to come from
|
|
|
|
# bootstrap tools when building bootstrap perl.
|
|
|
|
postPatch = (if crossCompiling then ''
|
2016-02-27 22:04:47 +01:00
|
|
|
substituteInPlace dist/PathTools/Cwd.pm \
|
2019-08-02 03:27:55 +02:00
|
|
|
--replace "/bin/pwd" '${coreutils}/bin/pwd'
|
2017-10-16 04:34:20 +02:00
|
|
|
substituteInPlace cnf/configure_tool.sh --replace "cc -E -P" "cc -E"
|
2019-08-02 03:27:55 +02:00
|
|
|
'' else ''
|
|
|
|
substituteInPlace dist/PathTools/Cwd.pm \
|
|
|
|
--replace "/bin/pwd" "$(type -P pwd)"
|
|
|
|
'') +
|
|
|
|
# Perl's build system uses the src variable, and its value may end up in
|
|
|
|
# the output in some cases (when cross-compiling)
|
|
|
|
''
|
|
|
|
unset src
|
2016-02-27 22:04:47 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Build a thread-safe Perl with a dynamic libperls.o. We need the
|
|
|
|
# "installstyle" option to ensure that modules are put under
|
|
|
|
# $out/lib/perl5 - this is the general default, but because $out
|
|
|
|
# contains the string "perl", Configure would select $out/lib.
|
|
|
|
# Miniperl needs -lm. perl needs -lrt.
|
|
|
|
configureFlags =
|
2017-10-16 04:34:20 +02:00
|
|
|
(if crossCompiling
|
|
|
|
then [ "-Dlibpth=\"\"" "-Dglibpth=\"\"" ]
|
|
|
|
else [ "-de" "-Dcc=cc" ])
|
|
|
|
++ [
|
2016-02-27 22:04:47 +01:00
|
|
|
"-Uinstallusrbinperl"
|
|
|
|
"-Dinstallstyle=lib/perl5"
|
|
|
|
"-Duseshrplib"
|
2016-03-07 22:03:07 +01:00
|
|
|
"-Dlocincpth=${libcInc}/include"
|
|
|
|
"-Dloclibpth=${libcLib}/lib"
|
2016-02-27 22:04:47 +01:00
|
|
|
]
|
2018-09-25 22:52:31 +02:00
|
|
|
++ optionals ((builtins.match ''5\.[0-9]*[13579]\..+'' version) != null) [ "-Dusedevel" "-Uversiononly" ]
|
2016-02-27 22:04:47 +01:00
|
|
|
++ optional stdenv.isSunOS "-Dcc=gcc"
|
2019-05-08 00:42:47 +02:00
|
|
|
++ optional enableThreading "-Dusethreads"
|
|
|
|
++ optionals (!crossCompiling) [
|
|
|
|
"-Dprefix=${placeholder "out"}"
|
|
|
|
"-Dman1dir=${placeholder "out"}/share/man/man1"
|
|
|
|
"-Dman3dir=${placeholder "out"}/share/man/man3"
|
2020-01-04 01:43:00 +01:00
|
|
|
];
|
2016-02-27 22:04:47 +01:00
|
|
|
|
2019-08-02 03:27:55 +02:00
|
|
|
configureScript = optionalString (!crossCompiling) "${stdenv.shell} ./Configure";
|
2016-02-27 22:04:47 +01:00
|
|
|
|
2017-10-16 04:34:20 +02:00
|
|
|
dontAddPrefix = !crossCompiling;
|
2016-02-27 22:04:47 +01:00
|
|
|
|
2017-10-16 04:34:20 +02:00
|
|
|
enableParallelBuilding = !crossCompiling;
|
2016-02-27 22:04:47 +01:00
|
|
|
|
2019-02-04 03:36:59 +01:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./Configure --replace '`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`' 'Thu Jan 1 00:00:01 UTC 1970'
|
|
|
|
substituteInPlace ./Configure --replace '$uname -a' '$uname --kernel-name --machine --operating-system'
|
2016-02-27 22:04:47 +01:00
|
|
|
'' + optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace hints/darwin.sh --replace "env MACOSX_DEPLOYMENT_TARGET=10.3" ""
|
|
|
|
'' + optionalString (!enableThreading) ''
|
|
|
|
# We need to do this because the bootstrap doesn't have a static libpthread
|
|
|
|
sed -i 's,\(libswanted.*\)pthread,\1,g' Configure
|
|
|
|
'';
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2019-04-09 16:49:47 +02:00
|
|
|
passthru = rec {
|
2019-05-08 16:09:19 +02:00
|
|
|
interpreter = "${perl}/bin/perl";
|
2019-04-09 16:49:47 +02:00
|
|
|
libPrefix = "lib/perl5/site_perl";
|
|
|
|
pkgs = callPackage ../../../top-level/perl-packages.nix {
|
2019-05-08 16:09:19 +02:00
|
|
|
inherit perl buildPerl;
|
2019-04-09 16:49:47 +02:00
|
|
|
overrides = config.perlPackageOverrides or (p: {}); # TODO: (self: super: {}) like in python
|
|
|
|
};
|
|
|
|
buildEnv = callPackage ./wrapper.nix {
|
2019-05-08 16:09:19 +02:00
|
|
|
inherit perl;
|
2019-04-09 16:49:47 +02:00
|
|
|
inherit (pkgs) requiredPerlModules;
|
|
|
|
};
|
|
|
|
withPackages = f: buildEnv.override { extraLibs = f pkgs; };
|
|
|
|
};
|
2016-02-27 22:04:47 +01:00
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # some tests fail, expensive
|
|
|
|
|
2017-05-30 18:11:37 +02:00
|
|
|
# TODO: it seems like absolute paths to some coreutils is required.
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# Remove dependency between "out" and "man" outputs.
|
|
|
|
rm "$out"/lib/perl5/*/*/.packlist
|
|
|
|
|
|
|
|
# Remove dependencies on glibc and gcc
|
|
|
|
sed "/ *libpth =>/c libpth => ' '," \
|
|
|
|
-i "$out"/lib/perl5/*/*/Config.pm
|
|
|
|
# TODO: removing those paths would be cleaner than overwriting with nonsense.
|
|
|
|
substituteInPlace "$out"/lib/perl5/*/*/Config_heavy.pl \
|
|
|
|
--replace "${libcInc}" /no-such-path \
|
|
|
|
--replace "${
|
stdenv: Introduce hasCC attribute
Before, we'd always use `cc = null`, and check for that. The problem is
this breaks for cross compilation to platforms that don't support a C
compiler.
It's a very subtle issue. One might think there is no problem because we
have `stdenvNoCC`, and presumably one would only build derivations that
use that. The problem is that one still wants to use tools at build-time
that are themselves built with a C compiler, and those are gotten via
"splicing". The runtime version of those deps will explode, but the
build time / `buildPackages` versions of those deps will be fine, and
splicing attempts to work this by using `builtins.tryEval` to filter out
any broken "higher priority" packages (runtime is the default and
highest priority) so that both `foo` and `foo.nativeDrv` works.
However, `tryEval` only catches certain evaluation failures (e.g.
exceptions), and not arbitrary failures (such as `cc.attr` when `cc` is
null). This means `tryEval` fails to let us use our build time deps, and
everything comes apart.
The right solution is, as usually, to get rid of splicing. Or, baring
that, to make it so `foo` never works and one has to explicitly do
`foo.*`. But that is a much larger change, and certaily one unsuitable
to be backported to stable.
Given that, we instead make an exception-throwing `cc` attribute, and
create a `hasCC` attribute for those derivations which wish to
condtionally use a C compiler: instead of doing `stdenv.cc or null ==
null` or something similar, one does `stdenv.hasCC`. This allows quering
without "tripping" the exception, while also allowing `tryEval` to work.
No platform without a C compiler is yet wired up by default. That will
be done in a following commit.
2019-11-25 00:07:20 +01:00
|
|
|
if stdenv.hasCC then stdenv.cc.cc else "/no-such-path"
|
2017-05-30 18:11:37 +02:00
|
|
|
}" /no-such-path \
|
2018-09-23 07:28:23 +02:00
|
|
|
--replace "${stdenv.cc}" /no-such-path \
|
2017-05-30 18:11:37 +02:00
|
|
|
--replace "$man" /no-such-path
|
2019-08-02 03:27:55 +02:00
|
|
|
'' + optionalString crossCompiling
|
2018-02-28 18:00:03 +01:00
|
|
|
''
|
|
|
|
mkdir -p $dev/lib/perl5/cross_perl/${version}
|
|
|
|
for dir in cnf/{stub,cpan}; do
|
|
|
|
cp -r $dir/* $dev/lib/perl5/cross_perl/${version}
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $dev/bin
|
|
|
|
install -m755 miniperl $dev/bin/perl
|
|
|
|
|
|
|
|
export runtimeArch="$(ls $out/lib/perl5/site_perl/${version})"
|
|
|
|
# wrapProgram should use a runtime-native SHELL by default, but
|
|
|
|
# it actually uses a buildtime-native one. If we ever fix that,
|
|
|
|
# we'll need to fix this to use a buildtime-native one.
|
|
|
|
#
|
|
|
|
# Adding the arch-specific directory is morally incorrect, as
|
|
|
|
# miniperl can't load the native modules there. However, it can
|
|
|
|
# (and sometimes needs to) load and run some of the pure perl
|
|
|
|
# code there, so we add it anyway. When needed, stubs can be put
|
|
|
|
# into $dev/lib/perl5/cross_perl/${version}.
|
|
|
|
wrapProgram $dev/bin/perl --prefix PERL5LIB : \
|
|
|
|
"$dev/lib/perl5/cross_perl/${version}:$out/lib/perl5/${version}:$out/lib/perl5/${version}/$runtimeArch"
|
2017-05-30 18:11:37 +02:00
|
|
|
''; # */
|
2016-03-07 22:03:07 +01:00
|
|
|
|
2016-02-27 22:04:47 +01:00
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.perl.org/";
|
2016-02-27 22:04:47 +01:00
|
|
|
description = "The standard implementation of the Perl 5 programmming language";
|
2018-08-18 23:11:55 +02:00
|
|
|
license = licenses.artistic1;
|
2016-02-27 22:04:47 +01:00
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
platforms = platforms.all;
|
2019-04-22 17:50:34 +02:00
|
|
|
priority = 6; # in `buildEnv' (including the one inside `perl.withPackages') the library files will have priority over files in `perl`
|
2016-02-27 22:04:47 +01:00
|
|
|
};
|
2019-08-02 03:27:55 +02:00
|
|
|
} // optionalAttrs (stdenv.buildPlatform != stdenv.hostPlatform) rec {
|
2020-06-03 05:07:53 +02:00
|
|
|
crossVersion = "1.3.4"; # Jun 2, 2020
|
2017-10-16 04:34:20 +02:00
|
|
|
|
2018-11-17 18:23:24 +01:00
|
|
|
perl-cross-src = fetchurl {
|
2018-10-11 23:53:52 +02:00
|
|
|
url = "https://github.com/arsv/perl-cross/archive/${crossVersion}.tar.gz";
|
2020-06-03 05:07:53 +02:00
|
|
|
sha256 = "15wvlafhpsh9h66s3vazhx46hf8ik75473acrvf6722ijd1wpz45";
|
2017-10-16 04:34:20 +02:00
|
|
|
};
|
|
|
|
|
2018-02-28 18:00:03 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc makeWrapper ];
|
2017-10-16 04:34:20 +02:00
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
unpackFile ${perl-cross-src}
|
|
|
|
cp -R perl-cross-${crossVersion}/* perl-${version}/
|
|
|
|
'';
|
|
|
|
|
|
|
|
configurePlatforms = [ "build" "host" "target" ];
|
2018-02-28 18:00:03 +01:00
|
|
|
|
|
|
|
# TODO merge setup hooks
|
|
|
|
setupHook = ./setup-hook-cross.sh;
|
2017-10-16 04:34:20 +02:00
|
|
|
});
|
2019-05-08 16:09:19 +02:00
|
|
|
in {
|
2019-08-06 11:37:23 +02:00
|
|
|
# Maint version
|
2018-06-25 15:33:09 +02:00
|
|
|
perl528 = common {
|
2019-05-08 16:09:19 +02:00
|
|
|
perl = pkgs.perl528;
|
2019-05-03 12:53:36 +02:00
|
|
|
buildPerl = buildPackages.perl528;
|
2020-06-03 05:07:53 +02:00
|
|
|
version = "5.28.3";
|
|
|
|
sha256 = "052if351m81yhaab429i1kv77v9b15qm0g48kr6y2yjrc7bc3jdg";
|
2018-06-25 15:33:09 +02:00
|
|
|
};
|
2018-09-25 20:58:01 +02:00
|
|
|
|
2019-08-06 11:37:23 +02:00
|
|
|
# Maint version
|
2019-05-25 07:13:52 +02:00
|
|
|
perl530 = common {
|
|
|
|
perl = pkgs.perl530;
|
|
|
|
buildPerl = buildPackages.perl530;
|
2020-06-03 05:07:53 +02:00
|
|
|
version = "5.30.3";
|
|
|
|
sha256 = "0vs0wwwlw47sswxaflkk4hw0y45cmc7arxx788kwpbminy5lrq1j";
|
2019-05-25 07:13:52 +02:00
|
|
|
};
|
|
|
|
|
2018-09-25 20:58:01 +02:00
|
|
|
# the latest Devel version
|
|
|
|
perldevel = common {
|
2019-05-08 16:09:19 +02:00
|
|
|
perl = pkgs.perldevel;
|
2019-05-03 12:53:36 +02:00
|
|
|
buildPerl = buildPackages.perldevel;
|
2020-06-03 05:07:53 +02:00
|
|
|
version = "5.32.0-RC0";
|
|
|
|
sha256 = "02i6n1xa4j0ksp014yy8q0j7scjcy5mr0yd4iash2ryrrfv5yw5k";
|
2018-09-25 20:58:01 +02:00
|
|
|
};
|
2016-02-27 22:04:47 +01:00
|
|
|
}
|