2016-03-07 09:50:52 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2015-11-26 09:53:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wolfssl";
|
2019-11-03 11:50:53 +00:00
|
|
|
version = "4.2.0";
|
2015-11-26 09:53:59 +00:00
|
|
|
|
2016-03-07 09:50:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wolfSSL";
|
|
|
|
repo = "wolfssl";
|
2017-07-20 10:01:38 +01:00
|
|
|
rev = "v${version}-stable";
|
2019-11-03 11:50:53 +00:00
|
|
|
sha256 = "16s7jx2brgii6jbpmr30ggkc7rrf388jl26g357sm7ggwliiwask";
|
2015-11-26 09:53:59 +00:00
|
|
|
};
|
|
|
|
|
2018-09-13 10:18:06 +01:00
|
|
|
configureFlags = [ "--enable-all" ];
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "doc" "lib" ];
|
2016-06-21 10:08:28 +01:00
|
|
|
|
2016-03-07 09:50:52 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-11-26 09:53:59 +00:00
|
|
|
|
2016-06-21 10:08:28 +01:00
|
|
|
postInstall = ''
|
|
|
|
# fix recursive cycle:
|
|
|
|
# wolfssl-config points to dev, dev propagates bin
|
|
|
|
moveToOutput bin/wolfssl-config "$dev"
|
|
|
|
# moveToOutput also removes "$out" so recreate it
|
|
|
|
mkdir -p "$out"
|
|
|
|
'';
|
|
|
|
|
2015-11-26 09:53:59 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
|
2015-11-26 09:53:59 +00:00
|
|
|
homepage = "https://www.wolfssl.com/";
|
|
|
|
platforms = platforms.all;
|
2018-10-07 17:51:24 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-11-26 09:53:59 +00:00
|
|
|
maintainers = with maintainers; [ mcmtroffaes ];
|
|
|
|
};
|
|
|
|
}
|