mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
Merge pull request #194800 from ruuda/libressl360
libressl: 3.5.3 -> 3.6.0
This commit is contained in:
commit
4811946ebf
@ -102,4 +102,18 @@ in {
|
||||
})
|
||||
];
|
||||
};
|
||||
|
||||
libressl_3_6 = generic {
|
||||
version = "3.6.0";
|
||||
hash = "sha256-GxLe/Lvb2+2oaSnkIQAK8PQjM63UgX/SbA2aGuxHhAQ=";
|
||||
|
||||
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=";
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
|
@ -21249,9 +21249,10 @@ with pkgs;
|
||||
|
||||
inherit (callPackages ../development/libraries/libressl { })
|
||||
libressl_3_4
|
||||
libressl_3_5;
|
||||
libressl_3_5
|
||||
libressl_3_6;
|
||||
|
||||
libressl = libressl_3_5;
|
||||
libressl = libressl_3_6;
|
||||
|
||||
boringssl = callPackage ../development/libraries/boringssl { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user