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

36 lines
947 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "wolfssl";
2019-11-03 11:50:53 +00:00
version = "4.2.0";
src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
2017-07-20 10:01:38 +01:00
rev = "v${version}-stable";
2019-11-03 11:50:53 +00:00
sha256 = "16s7jx2brgii6jbpmr30ggkc7rrf388jl26g357sm7ggwliiwask";
};
2018-09-13 10:18:06 +01:00
configureFlags = [ "--enable-all" ];
outputs = [ "out" "dev" "doc" "lib" ];
2016-06-21 10:08:28 +01:00
nativeBuildInputs = [ autoreconfHook ];
2016-06-21 10:08:28 +01: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 17:51:24 +01:00
license = stdenv.lib.licenses.gpl2;
maintainers = with maintainers; [ mcmtroffaes ];
};
}