From e1a273c11ba4af3fcac83fbd5c8b56a272f567dc Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Thu, 12 Oct 2023 19:36:05 +0200 Subject: [PATCH] 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 --- pkgs/development/libraries/botan/3.0.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/botan/3.0.nix b/pkgs/development/libraries/botan/3.0.nix index 139c002bb3be..a9b6a7aa27d3 100644 --- a/pkgs/development/libraries/botan/3.0.nix +++ b/pkgs/development/libraries/botan/3.0.nix @@ -1,9 +1,9 @@ { callPackage, fetchpatch, lib, ... } @ args: callPackage ./generic.nix (args // { - baseVersion = "3.1"; - revision = "1"; - sha256 = "sha256-MMhP6RmTapj+9TMfJGxiqiwOTSCFstRREgf2ogr6Oms="; + baseVersion = "3.2"; + revision = "0"; + sha256 = "BJyEeDX89u86niBrM94F3TiZnDJeJHSCdypVmNnl7OM="; # reconsider removing this platform marking, when MacOS uses Clang 14.0+ by default. badPlatforms = lib.platforms.darwin; })