Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

arrow-cpp: add fixDarwinDylibNames

(cherry picked from commit e884852ac4c4e179a0bcfd8cfb52b4d0f3b9c018)

cc #64144

+3 -2
+3 -2
pkgs/development/libraries/arrow-cpp/default.nix
··· 1 - { stdenv, symlinkJoin, fetchurl, fetchFromGitHub, autoconf, boost, brotli, cmake, double-conversion, flatbuffers, gflags, glog, gtest, lz4, perl, python, rapidjson, snappy, thrift, which, zlib, zstd }: 1 + { stdenv, symlinkJoin, fetchurl, fetchFromGitHub, fixDarwinDylibNames, autoconf, boost, brotli, cmake, double-conversion, flatbuffers, gflags, glog, gtest, lz4, perl, python, rapidjson, snappy, thrift, which, zlib, zstd }: 2 2 3 3 let 4 4 parquet-testing = fetchFromGitHub { ··· 25 25 ./darwin.patch 26 26 ]; 27 27 28 - nativeBuildInputs = [ cmake autoconf /* for vendored jemalloc */ ]; 28 + nativeBuildInputs = [ cmake autoconf /* for vendored jemalloc */ ] 29 + ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames; 29 30 buildInputs = [ boost double-conversion glog python.pkgs.python python.pkgs.numpy ]; 30 31 31 32 preConfigure = ''