mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00: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:
parent
60b79df674
commit
f86845ca89
|
@ -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 = [
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue