nixpkgs/pkgs/development/libraries/wolfssl/default.nix

55 lines
1.2 KiB
Nix
Raw Normal View History

2021-07-25 18:48:46 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "wolfssl";
2021-11-08 07:22:27 +00:00
version = "5.0.0";
src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
2017-07-20 09:01:38 +00:00
rev = "v${version}-stable";
2021-11-08 07:22:27 +00:00
sha256 = "sha256-rv9D+P42RMH1O4YLQbZIEkD6KQfs8KgYjhnHeA9vQqE=";
};
2021-07-25 18:48:46 +00: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-base64encode"
"--enable-pkcs11"
"--enable-writedup"
2021-07-25 18:48:46 +00:00
"--enable-reproducible-build"
"--enable-tls13"
];
2018-09-13 09:18:06 +00:00
2021-07-25 18:48:46 +00:00
outputs = [
"dev"
"doc"
"lib"
"out"
];
2016-06-21 09:08:28 +00:00
2021-07-25 18:48:46 +00:00
nativeBuildInputs = [
autoreconfHook
];
2016-06-21 09:08:28 +00: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"
'';
meta = with lib; {
description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
2021-07-25 18:48:46 +00:00
homepage = "https://www.wolfssl.com/";
platforms = platforms.all;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fab ];
};
}