wolfssl: 5.6.3 -> 5.6.4

This commit is contained in:
Adrian Pistol
2023-11-12 09:38:30 +01:00
committed by Alyssa Ross
parent 56fd7f00cb
commit bab997db72
2 changed files with 6 additions and 4 deletions
@@ -6,6 +6,7 @@
, autoreconfHook
, util-linux
, openssl
, cacert
# The primary --enable-XXX variant. 'all' enables most features, but causes build-errors for some software,
# requiring to build a special variant for that software. Example: 'haproxy'
, variant ? "all"
@@ -14,13 +15,13 @@
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wolfssl-${variant}";
version = "5.6.3";
version = "5.6.4";
src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
rev = "refs/tags/v${finalAttrs.version}-stable";
hash = "sha256-UN4zs+Rxh/bsLD1BQA+f1YN/UOJ6OB2HduhoetEp10Y=";
hash = "sha256-a9a3ca4Zb/XTS5YfPJwnXPYbDjmgD8qylhPQg5pjzJM=";
};
patches = [
@@ -92,6 +93,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeCheckInputs = [
openssl
cacert
];
postInstall = ''
+2 -2
View File
@@ -24399,8 +24399,8 @@ with pkgs;
boringssl = callPackage ../development/libraries/boringssl { };
wolfssl = callPackage ../development/libraries/wolfssl {
inherit (darwin.apple_sdk.frameworks) Security;
wolfssl = darwin.apple_sdk_11_0.callPackage ../development/libraries/wolfssl {
inherit (darwin.apple_sdk_11_0.frameworks) Security;
};
openssl = openssl_3;