nixpkgs: libressl 2.0.5
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
47c443bede
commit
0aa8cdcef9
20
pkgs/development/libraries/libressl/default.nix
Normal file
20
pkgs/development/libraries/libressl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user