mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
e2bc4e4bde
Contains a fix for CVE-2017-8301: TLS verification vulnerability in LibreSSL 2.5.1 - 2.5.3 [1][2] [1]: http://seclists.org/oss-sec/2017/q2/145 [2]: https://github.com/libressl-portable/portable/issues/307
23 lines
573 B
Nix
23 lines
573 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libressl-${version}";
|
|
version = "2.5.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
|
|
sha256 = "1ykf6dqlbafafhbdfmcj19pjj1z6wmsq0rmyqga1i0xv5x95nyhh";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Free TLS/SSL implementation";
|
|
homepage = "http://www.libressl.org";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
|
|
};
|
|
}
|