1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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