2016-09-28 15:14:51 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libressl-${version}";
|
2017-05-05 07:37:44 +02:00
|
|
|
version = "2.5.4";
|
2016-09-28 15:14:51 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
|
2017-05-05 07:37:44 +02:00
|
|
|
sha256 = "1ykf6dqlbafafhbdfmcj19pjj1z6wmsq0rmyqga1i0xv5x95nyhh";
|
2016-09-28 15:14:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|