2021-04-27 07:51:50 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchFromGitHub, fixDarwinDylibNames
|
2020-08-19 20:13:48 +00:00
|
|
|
, autoconf, boost, brotli, cmake, flatbuffers, gflags, glog, gtest, lz4
|
2021-10-31 02:08:19 +00:00
|
|
|
, perl, python3, rapidjson, re2, snappy, thrift, tzdata , utf8proc, which
|
2021-04-27 07:51:50 +00:00
|
|
|
, zlib, zstd
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2018-10-13 08:12:26 +00:00
|
|
|
|
|
|
|
let
|
2020-08-19 20:13:48 +00:00
|
|
|
arrow-testing = fetchFromGitHub {
|
|
|
|
owner = "apache";
|
|
|
|
repo = "arrow-testing";
|
2021-10-31 02:08:19 +00:00
|
|
|
rev = "a60b715263d9bbf7e744527fb0c084b693f58043";
|
|
|
|
hash = "sha256-Dz1dCV0m5Y24qzXdVaqrZ7hK3MRSb4GF0PXrjMAsjZU=";
|
2020-08-19 20:13:48 +00:00
|
|
|
};
|
|
|
|
|
2018-10-13 08:12:26 +00:00
|
|
|
parquet-testing = fetchFromGitHub {
|
|
|
|
owner = "apache";
|
|
|
|
repo = "parquet-testing";
|
2021-10-31 02:08:19 +00:00
|
|
|
rev = "d4d485956a643c693b5549e1a62d52ca61c170f1";
|
|
|
|
hash = "sha256-GmOAS8gGhzDI0WzORMkWHRRUl/XBwmNen2d3VefZxxc=";
|
2018-10-13 08:12:26 +00:00
|
|
|
};
|
2018-03-16 20:19:24 +00:00
|
|
|
|
2019-10-07 06:48:25 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "arrow-cpp";
|
2021-10-31 02:08:19 +00:00
|
|
|
version = "6.0.0";
|
2018-03-16 20:19:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-07 06:48:25 +00:00
|
|
|
url =
|
|
|
|
"mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz";
|
2021-10-31 02:08:19 +00:00
|
|
|
hash = "sha256-adJo+egtPr71la0b3IPUywKyDBgZRqaGMfZkXXwfepA=";
|
2018-03-16 20:19:24 +00:00
|
|
|
};
|
|
|
|
sourceRoot = "apache-arrow-${version}/cpp";
|
|
|
|
|
2019-08-07 03:48:20 +00:00
|
|
|
ARROW_JEMALLOC_URL = fetchurl {
|
|
|
|
# From
|
|
|
|
# ./cpp/cmake_modules/ThirdpartyToolchain.cmake
|
|
|
|
# ./cpp/thirdparty/versions.txt
|
2019-10-07 06:48:25 +00:00
|
|
|
url =
|
2020-05-12 00:34:33 +00:00
|
|
|
"https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2";
|
2021-07-29 19:30:34 +00:00
|
|
|
hash = "sha256-NDMOXOJ2CZ4uiVDZM121qHVomkxqVnUe87HYxTf4h/Y=";
|
2019-08-07 03:48:20 +00:00
|
|
|
};
|
|
|
|
|
2020-08-19 20:13:48 +00:00
|
|
|
ARROW_MIMALLOC_URL = fetchurl {
|
|
|
|
# From
|
|
|
|
# ./cpp/cmake_modules/ThirdpartyToolchain.cmake
|
|
|
|
# ./cpp/thirdparty/versions.txt
|
|
|
|
url =
|
2021-07-29 19:30:34 +00:00
|
|
|
"https://github.com/microsoft/mimalloc/archive/v1.7.2.tar.gz";
|
|
|
|
hash = "sha256-sZEuNUVlpLaYQQ91g8D4OTSm27Ot5Uq33csVaTIJNr0=";
|
2020-08-19 20:13:48 +00:00
|
|
|
};
|
|
|
|
|
2018-10-13 08:12:26 +00:00
|
|
|
patches = [
|
|
|
|
# patch to fix python-test
|
|
|
|
./darwin.patch
|
2019-10-07 06:48:25 +00:00
|
|
|
];
|
2018-10-03 22:37:12 +00:00
|
|
|
|
2019-10-07 06:48:25 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
autoconf # for vendored jemalloc
|
|
|
|
flatbuffers
|
2019-07-20 19:24:12 +00:00
|
|
|
] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2019-04-05 23:08:22 +00:00
|
|
|
buildInputs = [
|
2019-10-07 06:48:25 +00:00
|
|
|
boost
|
|
|
|
brotli
|
|
|
|
flatbuffers
|
|
|
|
gflags
|
|
|
|
glog
|
|
|
|
gtest
|
|
|
|
lz4
|
|
|
|
rapidjson
|
2021-01-26 16:35:44 +00:00
|
|
|
re2
|
2019-10-07 06:48:25 +00:00
|
|
|
snappy
|
|
|
|
thrift
|
2020-08-19 20:13:48 +00:00
|
|
|
utf8proc
|
2019-10-07 06:48:25 +00:00
|
|
|
zlib
|
|
|
|
zstd
|
2020-05-12 00:34:33 +00:00
|
|
|
] ++ lib.optionals enableShared [
|
|
|
|
python3.pkgs.python
|
|
|
|
python3.pkgs.numpy
|
2019-04-05 23:08:22 +00:00
|
|
|
];
|
2018-03-16 20:19:24 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2018-10-13 08:12:26 +00:00
|
|
|
patchShebangs build-support/
|
2021-10-31 02:08:19 +00:00
|
|
|
substituteInPlace "src/arrow/vendored/datetime/tz.cpp" \
|
|
|
|
--replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
|
2018-03-16 20:19:24 +00:00
|
|
|
'';
|
|
|
|
|
2018-03-19 00:13:16 +00:00
|
|
|
cmakeFlags = [
|
2020-02-11 10:57:42 +00:00
|
|
|
"-DCMAKE_FIND_PACKAGE_PREFER_CONFIG=ON"
|
2020-08-19 20:13:48 +00:00
|
|
|
"-DARROW_BUILD_SHARED=${if enableShared then "ON" else "OFF"}"
|
|
|
|
"-DARROW_BUILD_STATIC=${if enableShared then "OFF" else "ON"}"
|
2019-01-21 02:14:30 +00:00
|
|
|
"-DARROW_BUILD_TESTS=ON"
|
2020-08-19 20:13:48 +00:00
|
|
|
"-DARROW_VERBOSE_THIRDPARTY_BUILD=ON"
|
2019-04-05 23:08:22 +00:00
|
|
|
"-DARROW_DEPENDENCY_SOURCE=SYSTEM"
|
2021-10-29 06:01:01 +00:00
|
|
|
"-DThrift_SOURCE=AUTO" # search for Thrift using pkg-config (ThriftConfig.cmake requires OpenSSL and libevent)
|
2020-08-19 20:13:48 +00:00
|
|
|
"-DARROW_DEPENDENCY_USE_SHARED=${if enableShared then "ON" else "OFF"}"
|
2021-04-27 07:51:50 +00:00
|
|
|
"-DARROW_COMPUTE=ON"
|
|
|
|
"-DARROW_CSV=ON"
|
|
|
|
"-DARROW_DATASET=ON"
|
|
|
|
"-DARROW_JSON=ON"
|
2019-09-26 20:51:28 +00:00
|
|
|
"-DARROW_PLASMA=ON"
|
2019-12-16 12:22:20 +00:00
|
|
|
# Disable Python for static mode because openblas is currently broken there.
|
|
|
|
"-DARROW_PYTHON=${if enableShared then "ON" else "OFF"}"
|
2020-02-11 10:57:42 +00:00
|
|
|
"-DARROW_USE_GLOG=ON"
|
|
|
|
"-DARROW_WITH_BROTLI=ON"
|
|
|
|
"-DARROW_WITH_LZ4=ON"
|
|
|
|
"-DARROW_WITH_SNAPPY=ON"
|
2020-08-19 20:13:48 +00:00
|
|
|
"-DARROW_WITH_UTF8PROC=ON"
|
2020-02-11 10:57:42 +00:00
|
|
|
"-DARROW_WITH_ZLIB=ON"
|
|
|
|
"-DARROW_WITH_ZSTD=ON"
|
2020-08-19 20:13:48 +00:00
|
|
|
"-DARROW_MIMALLOC=ON"
|
2020-02-11 10:57:42 +00:00
|
|
|
# Parquet options:
|
|
|
|
"-DARROW_PARQUET=ON"
|
|
|
|
"-DPARQUET_BUILD_EXECUTABLES=ON"
|
2019-07-20 19:24:12 +00:00
|
|
|
] ++ lib.optionals (!enableShared) [
|
2019-12-16 12:22:20 +00:00
|
|
|
"-DARROW_TEST_LINKAGE=static"
|
2020-02-27 17:50:23 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF" # needed for tests
|
|
|
|
"-DCMAKE_INSTALL_RPATH=@loader_path/../lib" # needed for tools executables
|
2019-07-20 19:24:12 +00:00
|
|
|
] ++ lib.optional (!stdenv.isx86_64) "-DARROW_USE_SIMD=OFF";
|
2018-03-19 00:13:16 +00:00
|
|
|
|
2021-10-31 02:08:19 +00:00
|
|
|
ARROW_XSIMD_URL = fetchurl {
|
|
|
|
url = "https://github.com/xtensor-stack/xsimd/archive/aeec9c872c8b475dedd7781336710f2dd2666cb2.tar.gz";
|
|
|
|
sha256 = "09kvl962c6b0wnb7pb2n9dhvkflzwalgq6gwwi8628fgi9n1x10a";
|
|
|
|
};
|
2021-04-27 07:51:50 +00:00
|
|
|
|
2018-10-13 08:12:26 +00:00
|
|
|
doInstallCheck = true;
|
2020-08-19 20:13:48 +00:00
|
|
|
ARROW_TEST_DATA =
|
|
|
|
if doInstallCheck then "${arrow-testing}/data" else null;
|
2019-10-07 06:48:25 +00:00
|
|
|
PARQUET_TEST_DATA =
|
|
|
|
if doInstallCheck then "${parquet-testing}/data" else null;
|
2021-01-26 16:35:44 +00:00
|
|
|
GTEST_FILTER =
|
|
|
|
if doInstallCheck then let
|
|
|
|
# Upstream Issue: https://issues.apache.org/jira/browse/ARROW-11398
|
|
|
|
filteredTests = lib.optionals stdenv.hostPlatform.isAarch64 [
|
|
|
|
"TestFilterKernelWithNumeric/3.CompareArrayAndFilterRandomNumeric"
|
|
|
|
"TestFilterKernelWithNumeric/7.CompareArrayAndFilterRandomNumeric"
|
|
|
|
"TestCompareKernel.PrimitiveRandomTests"
|
|
|
|
];
|
|
|
|
in "-${builtins.concatStringsSep ":" filteredTests}" else null;
|
2018-10-13 08:12:26 +00:00
|
|
|
installCheckInputs = [ perl which ];
|
2020-02-27 17:50:23 +00:00
|
|
|
installCheckPhase =
|
|
|
|
let
|
2019-07-20 19:24:12 +00:00
|
|
|
excludedTests = lib.optionals stdenv.isDarwin [
|
2019-10-08 07:23:07 +00:00
|
|
|
# Some plasma tests need to be patched to use a shorter AF_UNIX socket
|
|
|
|
# path on Darwin. See https://github.com/NixOS/nix/pull/1085
|
|
|
|
"plasma-external-store-tests"
|
|
|
|
"plasma-client-tests"
|
|
|
|
];
|
|
|
|
in ''
|
|
|
|
ctest -L unittest -V \
|
2019-11-11 11:18:42 +00:00
|
|
|
--exclude-regex '^(${builtins.concatStringsSep "|" excludedTests})$'
|
2020-02-27 17:50:23 +00:00
|
|
|
'';
|
2018-10-13 08:12:26 +00:00
|
|
|
|
2021-05-29 07:30:51 +00:00
|
|
|
meta = with lib; {
|
2021-10-31 02:08:19 +00:00
|
|
|
description = "A cross-language development platform for in-memory data";
|
2019-10-07 06:48:25 +00:00
|
|
|
homepage = "https://arrow.apache.org/";
|
2021-05-29 07:30:51 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
2021-10-31 02:08:19 +00:00
|
|
|
maintainers = with maintainers; [ tobim veprbl cpcloud ];
|
2018-03-16 20:19:24 +00:00
|
|
|
};
|
|
|
|
}
|