rnp: use botan3

RNP uses botan for cryptographic primitives.
Since v0.17.1 rnp also supports botan 3, the
successor of botan 2. As botan 2 goes EOL end
of 2024, switch to botan 3.

Signed-off-by: Markus Theil <theil.markus@gmail.com>
This commit is contained in:
Markus Theil 2024-07-16 12:39:26 +02:00
parent 60b79df674
commit f86845ca89
No known key found for this signature in database
GPG Key ID: FEE64346C8BF92AE

View File

@ -1,7 +1,7 @@
{ lib { lib
, stdenv , stdenv
, asciidoctor , asciidoctor
, botan2 , botan3
, bzip2 , bzip2
, cmake , cmake
, fetchFromGitHub , fetchFromGitHub
@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-jUh7BxRnB6KePCk1jIvKzXgxSmWdKlQYmxshZZY4SBQ"; hash = "sha256-jUh7BxRnB6KePCk1jIvKzXgxSmWdKlQYmxshZZY4SBQ";
}; };
buildInputs = [ zlib bzip2 json_c botan2 sexpp ]; buildInputs = [ zlib bzip2 json_c botan3 sexpp ];
patches = [ patches = [
]; ];