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

36 lines
957 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "wolfssl-${version}";
version = "4.0.0";
src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
2017-07-20 10:01:38 +01:00
rev = "v${version}-stable";
sha256 = "155lmgz81ky0x04c8m2yzlsm58i9jk6hiw1ajc3wizvbpczbca57";
};
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 ];
};
}