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 { stdenv 2 , lib 3 , fetchurl 4 , fetchFromGitHub 5 , fixDarwinDylibNames 6 , abseil-cpp ··· 112 patches = [ 113 # patch to fix python-test 114 ./darwin.patch 115 ]; 116 117 nativeBuildInputs = [
··· 1 { stdenv 2 , lib 3 , fetchurl 4 + , fetchpatch 5 , fetchFromGitHub 6 , fixDarwinDylibNames 7 , abseil-cpp ··· 113 patches = [ 114 # patch to fix python-test 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 + }) 124 ]; 125 126 nativeBuildInputs = [