rnp: fix path in pkg-config file
This commit is contained in:
parent
7a2593d3c9
commit
d5f218a228
1 changed files with 10 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
, bzip2
|
, bzip2
|
||||||
, cmake
|
, cmake
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, gnupg
|
, gnupg
|
||||||
, gtest
|
, gtest
|
||||||
, json_c
|
, json_c
|
||||||
|
@ -24,6 +25,15 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "u0etVslTBF9fBqnpVBofYsm0uC/eR6gO3lhwzqua5Qw=";
|
sha256 = "u0etVslTBF9fBqnpVBofYsm0uC/eR6gO3lhwzqua5Qw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# in master post 0.16.0, see https://github.com/rnpgp/rnp/issues/1835
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
name = "fix-pkg-config.patch";
|
||||||
|
url = "https://github.com/rnpgp/rnp/commit/de9856c94ea829cad277800ee03ec52e30993d8e.patch";
|
||||||
|
sha256 = "1vd83fva7lhmvqnvsrifqb2zdhfrbx84lf3l9i0hcph0k8h3ddx9";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ zlib bzip2 json_c botan2 ];
|
buildInputs = [ zlib bzip2 json_c botan2 ];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
|
|
Loading…
Reference in a new issue