nixpkgs: libressl 2.0.5

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2014-08-20 00:51:15 -05:00
parent 47c443bede
commit 0aa8cdcef9
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libressl-${version}";
version = "2.0.5";
src = fetchurl {
url = "http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${name}.tar.gz";
sha256 = "16pwgmj90k10pf03il39lnck5kqw59hj0fp2qhmgsgmrvssn6m1z";
};
enableParallelBuilding = true;
meta = {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}

View File

@ -5870,6 +5870,8 @@ let
openspades = callPackage ../games/openspades {};
libressl = callPackage ../development/libraries/libressl { };
openssl = callPackage ../development/libraries/openssl {
fetchurl = fetchurlBoot;
cryptodevHeaders = linuxPackages.cryptodev.override {