mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
6d55b2e9c0
Fix multiple vulnerabilities in libcrypto relating to ASN.1 and encoding. http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.2.7-relnotes.txt http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.3.4-relnotes.txt
23 lines
573 B
Nix
23 lines
573 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libressl-${version}";
|
|
version = "2.3.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
|
|
sha256 = "1ag65pbvdikqj5y1w780jicl3ngi9ld2332ki6794y0gcar3a4bs";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|