We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a2593d commit d5f218aCopy full SHA for d5f218a
1 file changed
pkgs/tools/security/rnp/default.nix
@@ -5,6 +5,7 @@
5
, bzip2
6
, cmake
7
, fetchFromGitHub
8
+, fetchpatch
9
, gnupg
10
, gtest
11
, json_c
@@ -24,6 +25,15 @@ stdenv.mkDerivation rec {
24
25
sha256 = "u0etVslTBF9fBqnpVBofYsm0uC/eR6gO3lhwzqua5Qw=";
26
};
27
28
+ # in master post 0.16.0, see https://github.com/rnpgp/rnp/issues/1835
29
+ patches = [
30
+ (fetchpatch {
31
+ name = "fix-pkg-config.patch";
32
+ url = "https://github.com/rnpgp/rnp/commit/de9856c94ea829cad277800ee03ec52e30993d8e.patch";
33
+ sha256 = "1vd83fva7lhmvqnvsrifqb2zdhfrbx84lf3l9i0hcph0k8h3ddx9";
34
+ })
35
+ ];
36
+
37
buildInputs = [ zlib bzip2 json_c botan2 ];
38
39
cmakeFlags = [
0 commit comments