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