Merge pull request #114172 from dotlambda/wolfssl-4.7.0

wolfssl: 4.6.0 -> 4.7.0
This commit is contained in:
Sandro 2021-02-25 00:54:43 +01:00 committed by GitHub
commit 190f8f6da0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,17 +2,17 @@
stdenv.mkDerivation rec {
pname = "wolfssl";
version = "4.6.0";
version = "4.7.0";
src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
rev = "v${version}-stable";
sha256 = "0hk3bnzznxj047gwxdxw2v3w6jqq47996m7g72iwj6c2ai9g6h4m";
sha256 = "1aa51j0xnhi49izc8djya68l70jkjv25559pgybfb9sa4fa4gz97";
};
# almost same as Debian but for now using --enable-all instead of --enable-distro to ensure options.h gets installed
configureFlags = [ "--enable-all --enable-pkcs11 --enable-tls13 --enable-base64encode" ];
configureFlags = [ "--enable-all" "--enable-pkcs11" "--enable-tls13" "--enable-base64encode" ];
outputs = [ "out" "dev" "doc" "lib" ];
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
homepage = "https://www.wolfssl.com/";
platforms = platforms.all;
license = lib.licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ mcmtroffaes ];
};
}