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

23 lines
598 B
Nix
Raw Normal View History

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