wolfssl: 4.6.0 -> 4.7.0

This commit is contained in:
Robert Schütz 2021-02-23 22:08:10 +01:00
parent 3ef281c3a2
commit e5082a1b7e

View file

@ -2,17 +2,17 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "wolfssl"; pname = "wolfssl";
version = "4.6.0"; version = "4.7.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wolfSSL"; owner = "wolfSSL";
repo = "wolfssl"; repo = "wolfssl";
rev = "v${version}-stable"; 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 # 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" ]; outputs = [ "out" "dev" "doc" "lib" ];
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
description = "A small, fast, portable implementation of TLS/SSL for embedded devices"; description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
homepage = "https://www.wolfssl.com/"; homepage = "https://www.wolfssl.com/";
platforms = platforms.all; platforms = platforms.all;
license = lib.licenses.gpl2; license = licenses.gpl2Plus;
maintainers = with maintainers; [ mcmtroffaes ]; maintainers = with maintainers; [ mcmtroffaes ];
}; };
} }