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.4.0";
src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
2017-07-20 11:01:38 +02:00
rev = "v${version}-stable";
sha256 = "1bgkxqgxwa5dvi7fkna64wpcs552f3yxvs6fh6d32v7vg88vpfx9";
};
2018-09-13 11:18:06 +02:00
configureFlags = [ "--enable-all" ];
outputs = [ "out" "dev" "doc" "lib" ];
2016-06-21 11:08:28 +02:00
nativeBuildInputs = [ autoreconfHook ];
2016-06-21 11:08:28 +02: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 18:51:24 +02:00
license = stdenv.lib.licenses.gpl2;
maintainers = with maintainers; [ mcmtroffaes ];
};
}