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