Merge pull request #327621 from thillux/botan-update-2024-07

botan2: 2.19.4 -> 2.19.5; botan3: 3.4.0 -> 3.5.0
This commit is contained in:
7c6f434c
2024-07-16 15:14:30 +00:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -2,6 +2,6 @@
callPackage ./generic.nix (args // {
baseVersion = "2.19";
revision = "4";
hash = "sha256-WjqI72Qz6XvKsO+h7WDGGX5K2p2dMLwcR0N7+JuX8nY=";
revision = "5";
hash = "sha256-3+6g4KbybWckxK8B2pp7iEh62y2Bunxy/K9S21IsmtQ=";
})
+2 -2
View File
@@ -1,9 +1,9 @@
{ callPackage, stdenv, lib, ... } @ args:
callPackage ./generic.nix (args // {
baseVersion = "3.4";
baseVersion = "3.5";
revision = "0";
hash = "sha256-cYQ6/MCixYX48z+jBPC1iuS5xdgwb4lGZ7N0YEQndVc=";
hash = "sha256-Z+ja4cokaNkN5OYByH1fMf9JKzjoq4vL0C3fcQTtip8=";
# this patch fixes build errors on MacOS with SDK 10.12, recheck to remove this again
extraPatches = lib.optionals stdenv.hostPlatform.isDarwin [ ./botan3-macos.patch ];
})