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