nixpkgs/pkgs/development/libraries/botan/3.0.nix
Markus Theil e1a273c11b botan3: 3.1.1 -> 3.2.0
Changelog: https://botan.randombit.net/news.html

Most notable changes: better PQC and TLS 1.3 support

Signed-off-by: Markus Theil <theil.markus@gmail.com>
2023-10-12 19:36:08 +02:00

10 lines
313 B
Nix

{ callPackage, fetchpatch, lib, ... } @ args:
callPackage ./generic.nix (args // {
baseVersion = "3.2";
revision = "0";
sha256 = "BJyEeDX89u86niBrM94F3TiZnDJeJHSCdypVmNnl7OM=";
# reconsider removing this platform marking, when MacOS uses Clang 14.0+ by default.
badPlatforms = lib.platforms.darwin;
})