46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
36 lines
947 B
Nix
36 lines
947 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wolfssl";
|
|
version = "4.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wolfSSL";
|
|
repo = "wolfssl";
|
|
rev = "v${version}-stable";
|
|
sha256 = "16d1dzbdx6x7czbxf6i1rlb5mv59yzzpnha7qgwab3yq62rlsgw3";
|
|
};
|
|
|
|
configureFlags = [ "--enable-all" ];
|
|
|
|
outputs = [ "out" "dev" "doc" "lib" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
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;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with maintainers; [ mcmtroffaes ];
|
|
};
|
|
}
|