Merge pull request #198558 from LeSuisse/wolfssl-5.5.2

wolfssl: 5.5.1 -> 5.5.2
This commit is contained in:
Robert Scott 2022-11-04 21:11:33 +00:00 committed by GitHub
commit 36e7b7f085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -1,19 +1,20 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, Security
, autoreconfHook , autoreconfHook
, openssl , openssl
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "wolfssl"; pname = "wolfssl";
version = "5.5.1"; version = "5.5.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wolfSSL"; owner = "wolfSSL";
repo = "wolfssl"; repo = "wolfssl";
rev = "v${version}-stable"; rev = "v${version}-stable";
sha256 = "sha256-gDY5uEvV5nNPObrar5Fq2UTW30UZ71CooUwQVJkq4l8="; sha256 = "sha256-d8DDyEsK35WK7c0udZI5HxQLO+mbod8hlbSoa3IWWS0=";
}; };
postPatch = '' postPatch = ''
@ -42,6 +43,7 @@ stdenv.mkDerivation rec {
"out" "out"
]; ];
propagatedBuildInputs = [ ] ++ lib.optionals stdenv.isDarwin [ Security ];
nativeBuildInputs = [ nativeBuildInputs = [
autoreconfHook autoreconfHook
]; ];

View File

@ -21599,7 +21599,9 @@ with pkgs;
boringssl = callPackage ../development/libraries/boringssl { }; boringssl = callPackage ../development/libraries/boringssl { };
wolfssl = callPackage ../development/libraries/wolfssl { }; wolfssl = callPackage ../development/libraries/wolfssl {
inherit (darwin.apple_sdk.frameworks) Security;
};
openssl = openssl_3; openssl = openssl_3;