2014-08-20 06:51:15 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libressl-${version}";
|
2015-03-18 00:34:17 +00:00
|
|
|
version = "2.1.5";
|
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";
|
2015-03-18 00:34:17 +00:00
|
|
|
sha256 = "1fy3x5idx5mnncbzhsw1ahwnh7ram4d05ksz0ipf5x6p7y8pj8x8";
|
2014-08-20 06:51:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice wkennington ];
|
2014-08-20 06:51:15 +01:00
|
|
|
};
|
|
|
|
}
|