Merge pull request #230562 from risicle/ris-libressl-3.7

libressl: 3.6.2 -> 3.7.2
This commit is contained in:
Franz Pletz 2023-05-09 08:31:20 +02:00 committed by GitHub
commit 6f310794dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 18 deletions

View File

@ -107,22 +107,13 @@ in {
]; ];
}; };
libressl_3_5 = generic {
version = "3.5.4";
hash = "sha256-A3naE0Si9xrUpOO+MO+dgu7N3Of43CrmZjGh3+FDQ6w=";
patches = [
# Fix endianness detection on aarch64-darwin, issue #181187
(fetchpatch {
name = "fix-endian-header-detection.patch";
url = "https://patch-diff.githubusercontent.com/raw/libressl-portable/portable/pull/771.patch";
sha256 = "sha256-in5U6+sl0HB9qMAtUL6Py4X2rlv0HsqRMIQhhM1oThE=";
})
];
};
libressl_3_6 = generic { libressl_3_6 = generic {
version = "3.6.2"; version = "3.6.2";
hash = "sha256-S+gP/wc3Rs9QtKjlur4nlayumMaxMqngJRm0Rd+/0DM="; hash = "sha256-S+gP/wc3Rs9QtKjlur4nlayumMaxMqngJRm0Rd+/0DM=";
}; };
libressl_3_7 = generic {
version = "3.7.2";
hash = "sha256-sGqlOP78nGszxNtJMaCaX1LZ0jVyGa/L/32T/hLr9vc=";
};
} }

View File

@ -866,6 +866,7 @@ mapAliases ({
librdf = lrdf; # Added 2020-03-22 librdf = lrdf; # Added 2020-03-22
librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22 librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22
libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19 libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19
libressl_3_5 = throw "'libressl_3_5' has reached end-of-life "; # Added 2023-05-07
librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23 librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23
librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24 librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24
librtlsdr = rtl-sdr; # Added 2023-02-18 librtlsdr = rtl-sdr; # Added 2023-02-18

View File

@ -23165,10 +23165,10 @@ with pkgs;
inherit (callPackages ../development/libraries/libressl { }) inherit (callPackages ../development/libraries/libressl { })
libressl_3_4 libressl_3_4
libressl_3_5 libressl_3_6
libressl_3_6; libressl_3_7;
libressl = libressl_3_6; libressl = libressl_3_7;
boringssl = callPackage ../development/libraries/boringssl { }; boringssl = callPackage ../development/libraries/boringssl { };
@ -39620,7 +39620,7 @@ with pkgs;
wasm-pack = callPackage ../development/tools/wasm-pack { wasm-pack = callPackage ../development/tools/wasm-pack {
inherit (darwin.apple_sdk.frameworks) Security; inherit (darwin.apple_sdk.frameworks) Security;
libressl = libressl_3_5; libressl = libressl_3_6;
}; };
wasynth = callPackage ../development/tools/wasynth { }; wasynth = callPackage ../development/tools/wasynth { };