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