2016-03-07 10:50:52 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2015-11-26 10:53:59 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "wolfssl";
|
2019-08-06 12:03:51 +02:00
|
|
|
version = "4.1.0";
|
2015-11-26 10:53:59 +01:00
|
|
|
|
2016-03-07 10:50:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wolfSSL";
|
|
|
|
repo = "wolfssl";
|
2017-07-20 11:01:38 +02:00
|
|
|
rev = "v${version}-stable";
|
2019-08-06 12:03:51 +02:00
|
|
|
sha256 = "16d1dzbdx6x7czbxf6i1rlb5mv59yzzpnha7qgwab3yq62rlsgw3";
|
2015-11-26 10:53:59 +01:00
|
|
|
};
|
|
|
|
|
2018-09-13 11:18:06 +02:00
|
|
|
configureFlags = [ "--enable-all" ];
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "doc" "lib" ];
|
2016-06-21 11:08:28 +02:00
|
|
|
|
2016-03-07 10:50:52 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-11-26 10:53:59 +01:00
|
|
|
|
2016-06-21 11:08:28 +02: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 10:53:59 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-02-27 18:24:00 +01:00
|
|
|
description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
|
2015-11-26 10:53:59 +01:00
|
|
|
homepage = "https://www.wolfssl.com/";
|
|
|
|
platforms = platforms.all;
|
2018-10-07 18:51:24 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-11-26 10:53:59 +01:00
|
|
|
maintainers = with maintainers; [ mcmtroffaes ];
|
|
|
|
};
|
|
|
|
}
|