[staging] always expose perl.version (#42644)

always expose perl.version (currently it is only visible if (stdenv.buildPlatform != stdenv.hostPlatform))
This commit is contained in:
volth 2018-06-27 13:37:36 +00:00 committed by xeji
parent d5a647245f
commit 3fb3031f93

View File

@ -23,6 +23,8 @@ let
libcLib = lib.getLib libc; libcLib = lib.getLib libc;
crossCompiling = stdenv.buildPlatform != stdenv.hostPlatform; crossCompiling = stdenv.buildPlatform != stdenv.hostPlatform;
common = { version, sha256 }: stdenv.mkDerivation (rec { common = { version, sha256 }: stdenv.mkDerivation (rec {
inherit version;
name = "perl-${version}"; name = "perl-${version}";
src = fetchurlBoot { src = fetchurlBoot {
@ -179,8 +181,6 @@ let
configurePlatforms = [ "build" "host" "target" ]; configurePlatforms = [ "build" "host" "target" ];
inherit version;
# TODO merge setup hooks # TODO merge setup hooks
setupHook = ./setup-hook-cross.sh; setupHook = ./setup-hook-cross.sh;
}); });
@ -194,7 +194,7 @@ in rec {
perl524 = common { perl524 = common {
version = "5.24.4"; version = "5.24.4";
sha256 = "0w0r6v5k5hw5q1k3p4c7krcxidkj2qzsj5dlrlrxhm01n7fksbxz"; sha256 = "0w0r6v5k5hw5q1k3p4c7krcxidkj2qzsj5dlrlrxhm01n7fksbxz";
}; };
perl526 = common { perl526 = common {