Merge pull request #40440 from ruuda/libressl

libressl: init at 2.7, change url to https
This commit is contained in:
Matthew Justin Bauer 2018-05-13 18:21:26 -05:00 committed by GitHub
commit 09204fe806
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View File

@ -26,7 +26,7 @@ let
meta = with lib; {
description = "Free TLS/SSL implementation";
homepage = "http://www.libressl.org";
homepage = "https://www.libressl.org";
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ];
};
@ -43,4 +43,9 @@ in {
version = "2.6.4";
sha256 = "07yi37a2ghsgj2b4w30q1s4d2inqnix7ika1m21y57p9z71212k3";
};
libressl_2_7 = generic {
version = "2.7.3";
sha256 = "1597kj9jy3jyw52ys19sd4blg2gkam5q0rqdxbnrnvnyw67hviqn";
};
}

View File

@ -10947,9 +10947,10 @@ with pkgs;
inherit (callPackages ../development/libraries/libressl { })
libressl_2_5
libressl_2_6;
libressl_2_6
libressl_2_7;
libressl = libressl_2_5;
libressl = libressl_2_7;
boringssl = callPackage ../development/libraries/boringssl { };