arrow-cpp: fix paths in CMake and pkg-config files

authored by Alexander Shpilkin and committed by Artturin 89f39f58 d5ad233c

+9
+9
pkgs/development/libraries/arrow-cpp/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchurl 4 + , fetchpatch 4 5 , fetchFromGitHub 5 6 , fixDarwinDylibNames 6 7 , abseil-cpp ··· 112 113 patches = [ 113 114 # patch to fix python-test 114 115 ./darwin.patch 116 + # in master post 8.0.0, see https://github.com/apache/arrow/pull/13182 117 + (fetchpatch { 118 + name = "fix-pkg-config.patch"; 119 + stripLen = 1; 120 + excludes = [ "src/arrow/engine/arrow-substrait.pc.in" ]; # for < 8.0.0 121 + url = "https://github.com/apache/arrow/commit/a242eb17362c0352fc3291213542c48abfe18669.patch"; 122 + sha256 = "15gz13f8q75l7d4z5blyvxd805hwfcvrbrxs2kbfal9vcbnirycx"; 123 + }) 115 124 ]; 116 125 117 126 nativeBuildInputs = [