wolfssl: 3.7.0 -> 3.8.0
changes by @globin: use autoreconfHook closes #13731 Signed-off-by: Robin Gloster <mail@glob.in>
This commit is contained in:
parent
350b5193c0
commit
495985ace3
@ -1,19 +1,17 @@
|
|||||||
{ stdenv, fetchurl, autoconf, automake, libtool }:
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "wolfssl-${version}";
|
name = "wolfssl-${version}";
|
||||||
version = "3.7.0";
|
version = "3.8.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/wolfSSL/wolfssl/archive/v${version}.tar.gz";
|
owner = "wolfSSL";
|
||||||
sha256 = "1r1awivral4xjjvnna9lrfz2rh84rcbp04834rymbsz0kbyykgb6";
|
repo = "wolfssl";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0vc2120a9gfxg3rv018ch1g84ia2cpplcqbpy8v6vpfb79rn1nf5";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf automake libtool ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
./autogen.sh
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
|
description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
|
||||||
|
Loading…
Reference in New Issue
Block a user