2024-07-27 06:49:29 +00:00
|
|
|
{ callPackage, stdenv, lib, ... } @ args:
|
2023-08-04 22:07:22 +00:00
|
|
|
|
|
|
|
callPackage ./generic.nix (args // {
|
2024-07-27 06:49:29 +00:00
|
|
|
baseVersion = "3.5";
|
2023-10-19 13:55:26 +00:00
|
|
|
revision = "0";
|
2024-07-27 06:49:29 +00:00
|
|
|
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 ];
|
2023-08-04 22:07:22 +00:00
|
|
|
})
|