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

36 lines
947 B
Nix
Raw Normal View History

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