{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "libressl-${version}"; version = "2.3.5"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; sha256 = "0fvmifz61zfq6byy4dh1qqdg9fpbdsyldjwx5hlcgg6ywxf2f9gl"; }; enableParallelBuilding = true; outputs = [ "dev" "out" "man" "bin" ]; meta = with stdenv.lib; { description = "Free TLS/SSL implementation"; homepage = "http://www.libressl.org"; platforms = platforms.all; maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ]; }; }