Merge pull request #269996 from stigtsp/perl/update-5.38.1-5.36.2

[staging] perl: 5.38.0 -> 5.38.2, 5.36.1 -> 5.36.3, perl-cross: 1.5 -> 84db4c71
This commit is contained in:
Janne Heß 2023-11-30 17:20:40 +01:00 committed by GitHub
commit c1778d5d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -57,16 +57,16 @@ in rec {
# Maint version
perl536 = callPackage ./intepreter.nix {
self = perl536;
version = "5.36.1";
sha256 = "sha256-aCA2Zdjs4CmI/HfckvzLspeoOku0uNB1WEQvl42lTME=";
version = "5.36.3";
sha256 = "sha256-8qGtiBFjkaF2Ji3ULfxS7yKvtA9MDpgQ8V1WHm8ccmo=";
inherit passthruFun;
};
# Maint version
perl538 = callPackage ./intepreter.nix {
self = perl538;
version = "5.38.0";
sha256 = "sha256-IT71gInS8sly6jU1F9xg7DZW8FDcwCdmbhGLUIQj5Rc=";
version = "5.38.2";
sha256 = "sha256-oKMVNEUet7g8fWWUpJdUOlTUiLyQygD140diV39AZV4=";
inherit passthruFun;
};
}

View File

@ -236,14 +236,14 @@ stdenv.mkDerivation (rec {
mainProgram = "perl";
};
} // lib.optionalAttrs (stdenv.buildPlatform != stdenv.hostPlatform) rec {
crossVersion = "1.5"; # Jul 03, 2023
crossVersion = "84db4c71ae3d3b01fb2966cd15a060a7be334710"; # Nov 29, 2023
perl-cross-src = fetchFromGitHub {
name = "perl-cross-${crossVersion}";
owner = "arsv";
repo = "perl-cross";
rev = crossVersion;
sha256 = "sha256-9nRFJinZUWUSpXXyyIVmhRLQ1B5LB3UmN2iAckmem58=";
sha256 = "sha256-1Zqw4sy/lD2nah0Z8rAE11tSpq1Ym9nBbatDczR+mxs=";
};
depsBuildBuild = [ buildPackages.stdenv.cc makeWrapper ];