Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libressl: 3.7.3 -> 3.8.2

+8 -2
+5
pkgs/development/libraries/libressl/default.nix
··· 100 version = "3.7.3"; 101 hash = "sha256-eUjIVqkMglvXJotvhWdKjc0lS65C4iF4GyTj+NwzXbM="; 102 }; 103 }
··· 100 version = "3.7.3"; 101 hash = "sha256-eUjIVqkMglvXJotvhWdKjc0lS65C4iF4GyTj+NwzXbM="; 102 }; 103 + 104 + libressl_3_8 = generic { 105 + version = "3.8.2"; 106 + hash = "sha256-bUuNW7slofgzZjnlbsUIgFLUOpUlZpeoXEzpEyPCWVQ="; 107 + }; 108 }
+3 -2
pkgs/top-level/all-packages.nix
··· 24429 24430 inherit (callPackages ../development/libraries/libressl { }) 24431 libressl_3_6 24432 - libressl_3_7; 24433 24434 - libressl = libressl_3_7; 24435 24436 boringssl = callPackage ../development/libraries/boringssl { }; 24437
··· 24429 24430 inherit (callPackages ../development/libraries/libressl { }) 24431 libressl_3_6 24432 + libressl_3_7 24433 + libressl_3_8; 24434 24435 + libressl = libressl_3_8; 24436 24437 boringssl = callPackage ../development/libraries/boringssl { }; 24438