2014-08-19 22:51:15 -07:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libressl-${version}";
|
2016-06-26 15:29:43 -07:00
|
|
|
version = "2.3.6";
|
2014-08-19 22:51:15 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-01-03 09:36:25 -08:00
|
|
|
url = "mirror://openbsd/LibreSSL/${name}.tar.gz";
|
2016-06-26 15:29:43 -07:00
|
|
|
sha256 = "1yipsp1ici207nbminbf1knh252kzvqg036v0xpx0fw1wrwlg2im";
|
2014-08-19 22:51:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-04-14 14:45:43 -07:00
|
|
|
outputs = [ "dev" "out" "man" "bin" ];
|
|
|
|
|
2015-03-12 11:37:27 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-19 22:51:15 -07:00
|
|
|
description = "Free TLS/SSL implementation";
|
|
|
|
homepage = "http://www.libressl.org";
|
2015-03-12 11:37:27 -07:00
|
|
|
platforms = platforms.all;
|
2016-01-28 19:41:14 -08:00
|
|
|
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
|
2014-08-19 22:51:15 -07:00
|
|
|
};
|
|
|
|
}
|