2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2015-11-26 01:53:59 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "wolfssl";
|
2021-02-23 13:08:10 -08:00
|
|
|
version = "4.7.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";
|
2021-02-23 13:08:10 -08:00
|
|
|
sha256 = "1aa51j0xnhi49izc8djya68l70jkjv25559pgybfb9sa4fa4gz97";
|
2015-11-26 01:53:59 -08:00
|
|
|
};
|
|
|
|
|
2021-02-25 02:38:18 -08:00
|
|
|
# almost same as Debian but for now using --enable-all --enable-reproducible-build instead of --enable-distro to ensure options.h gets installed
|
|
|
|
configureFlags = [ "--enable-all" "--enable-reproducible-build" "--enable-pkcs11" "--enable-tls13" "--enable-base64encode" ];
|
2018-09-13 02:18:06 -07:00
|
|
|
|
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"
|
|
|
|
'';
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with 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;
|
2021-02-23 13:08:10 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2015-11-26 01:53:59 -08:00
|
|
|
maintainers = with maintainers; [ mcmtroffaes ];
|
|
|
|
};
|
|
|
|
}
|