lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 32 lines 878 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 name = "wolfssl-${version}"; 5 version = "3.15.3"; 6 7 src = fetchFromGitHub { 8 owner = "wolfSSL"; 9 repo = "wolfssl"; 10 rev = "v${version}-stable"; 11 sha256 = "00mpq1z8j37a873dbk9knb835m3qlwqnd1rslirqkc44hpz1i64j"; 12 }; 13 14 outputs = [ "out" "dev" "doc" "lib" ]; 15 16 nativeBuildInputs = [ autoreconfHook ]; 17 18 postInstall = '' 19 # fix recursive cycle: 20 # wolfssl-config points to dev, dev propagates bin 21 moveToOutput bin/wolfssl-config "$dev" 22 # moveToOutput also removes "$out" so recreate it 23 mkdir -p "$out" 24 ''; 25 26 meta = with stdenv.lib; { 27 description = "A small, fast, portable implementation of TLS/SSL for embedded devices"; 28 homepage = "https://www.wolfssl.com/"; 29 platforms = platforms.all; 30 maintainers = with maintainers; [ mcmtroffaes ]; 31 }; 32}