libressl_3_2: init at 3.2.5, libressl_3_1: 3.1.4 -> 3.1.5

Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
This commit is contained in:
Masanori Ogino 2020-10-24 05:21:19 +09:00
parent f137bcd5c9
commit 59617f748e
2 changed files with 10 additions and 4 deletions

View File

@ -64,7 +64,12 @@ let
in { in {
libressl_3_1 = generic { libressl_3_1 = generic {
version = "3.1.4"; version = "3.1.5";
sha256 = "1dnbbnr43jashxivnafmh9gnn57c7ayva788ba03z633k6f18k21"; sha256 = "1504a1sf43frw43j14pij0q1f48rm5q86ggrlxxhw708qp7ds4rc";
};
libressl_3_2 = generic {
version = "3.2.5";
sha256 = "1zkwrs3b19s1ybz4q9hrb7pqsbsi8vxcs44qanfy11fkc7ynb2kr";
}; };
} }

View File

@ -16410,11 +16410,12 @@ in
openvdb = callPackage ../development/libraries/openvdb {}; openvdb = callPackage ../development/libraries/openvdb {};
inherit (callPackages ../development/libraries/libressl { }) inherit (callPackages ../development/libraries/libressl { })
libressl_3_1; libressl_3_1
libressl_3_2;
# Please keep this pointed to the latest version. See also # Please keep this pointed to the latest version. See also
# https://discourse.nixos.org/t/nixpkgs-policy-regarding-libraries-available-in-multiple-versions/7026/2 # https://discourse.nixos.org/t/nixpkgs-policy-regarding-libraries-available-in-multiple-versions/7026/2
libressl = libressl_3_1; libressl = libressl_3_2;
boringssl = callPackage ../development/libraries/boringssl { }; boringssl = callPackage ../development/libraries/boringssl { };