jsoncpp: fix build on aarch64
This commit is contained in:
parent
6b935eb62a
commit
59edab3a47
@ -1,4 +1,4 @@
|
|||||||
{ stdenv , fetchFromGitHub , cmake , python }:
|
{ stdenv, fetchFromGitHub, cmake, python, fetchpatch }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "jsoncpp";
|
pname = "jsoncpp";
|
||||||
@ -30,6 +30,14 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake python ];
|
nativeBuildInputs = [ cmake python ];
|
||||||
|
|
||||||
|
# fix inverted sense in isAnyCharRequiredQuoting on aarch64. See: https://github.com/open-source-parsers/jsoncpp/pull/1120
|
||||||
|
patches = stdenv.lib.optionals stdenv.isAarch64 [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/open-source-parsers/jsoncpp/commit/9093358efae9e5981aa60013487fc7215f040a59.patch";
|
||||||
|
sha256 = "1wiqp70sck2md14sfc0zdkblqk9750cl55ykf9d6b9vs1ifzzzq5";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DBUILD_SHARED_LIBS=ON"
|
"-DBUILD_SHARED_LIBS=ON"
|
||||||
"-DBUILD_STATIC_LIBS=OFF"
|
"-DBUILD_STATIC_LIBS=OFF"
|
||||||
|
Loading…
Reference in New Issue
Block a user