2016-03-07 09:50:52 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
2015-11-26 09:53:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "wolfssl-${version}";
|
2016-03-07 09:50:52 +00:00
|
|
|
version = "3.8.0";
|
2015-11-26 09:53:59 +00:00
|
|
|
|
2016-03-07 09:50:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wolfSSL";
|
|
|
|
repo = "wolfssl";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0vc2120a9gfxg3rv018ch1g84ia2cpplcqbpy8v6vpfb79rn1nf5";
|
2015-11-26 09:53:59 +00:00
|
|
|
};
|
|
|
|
|
2016-03-07 09:50:52 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-11-26 09:53:59 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-02-27 17:24:00 +00:00
|
|
|
description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
|
2015-11-26 09:53:59 +00:00
|
|
|
homepage = "https://www.wolfssl.com/";
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ mcmtroffaes ];
|
|
|
|
};
|
|
|
|
}
|