144eed8bad
2.3.x introduces some backward-incompatible changes but is still nice to have. Both 2.3.1 and 2.2.4 are available and 2.2.4 is still the default for now.
21 lines
536 B
Nix
21 lines
536 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libressl-${version}";
|
|
version = "2.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
|
|
sha256 = "410b58db4ebbcab43c3357612e591094f64fb9339269caa2e68728e36f8d589e";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|