21 lines
531 B
Nix
21 lines
531 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libressl-${version}";
|
|
version = "2.2.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
|
|
sha256 = "0kynb15l5gq1qgp3p4ncn20sc65sbl8lk89vyr07s17xrya9kq8y";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|