2021-04-27 09:51:50 +02:00
|
|
|
{ stdenv, lib, fetchurl, fetchFromGitHub, fixDarwinDylibNames
|
2020-08-19 22:13:48 +02:00
|
|
|
, autoconf, boost, brotli, cmake, flatbuffers, gflags, glog, gtest, lz4
|
2021-04-27 09:51:50 +02:00
|
|
|
, perl, python3, rapidjson, re2, snappy, thrift, utf8proc, which, xsimd
|
|
|
|
, zlib, zstd
|
2020-12-20 07:11:26 +01:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2018-10-13 10:12:26 +02:00
|
|
|
|
|
|
|
let
|
2020-08-19 22:13:48 +02:00
|
|
|
arrow-testing = fetchFromGitHub {
|
|
|
|
owner = "apache";
|
|
|
|
repo = "arrow-testing";
|
2021-07-29 21:30:34 +02:00
|
|
|
rev = "6d98243093c0b36442da94de7010f3eacc2a9909";
|
|
|
|
hash = "sha256-n57Fuz2k6sX1o3vYBmC41eRKGnyt9+YL5r3WTHHRRzw=";
|
2020-08-19 22:13:48 +02:00
|
|
|
};
|
|
|
|
|
2018-10-13 10:12:26 +02:00
|
|
|
parquet-testing = fetchFromGitHub {
|
|
|
|
owner = "apache";
|
|
|
|
repo = "parquet-testing";
|
2021-04-27 09:51:50 +02:00
|
|
|
rev = "ddd898958803cb89b7156c6350584d1cda0fe8de";
|
2021-07-29 21:30:34 +02:00
|
|
|
hash = "sha256-gK04mj1Fuhkf82NDMrXplFa+cr/3Ij7I9VnYfinuJlg=";
|
2018-10-13 10:12:26 +02:00
|
|
|
};
|
2018-03-16 21:19:24 +01:00
|
|
|
|
2019-10-07 08:48:25 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "arrow-cpp";
|
2021-07-29 21:30:34 +02:00
|
|
|
version = "5.0.0";
|
2018-03-16 21:19:24 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-07 08:48:25 +02:00
|
|
|
url =
|
|
|
|
"mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz";
|
2021-07-29 21:30:34 +02:00
|
|
|
hash = "sha256-w7QxPspZTCD3Yag2cZchqvB2AAGviWuuw6tkQg/5kQo=";
|
2018-03-16 21:19:24 +01:00
|
|
|
};
|
|
|
|
sourceRoot = "apache-arrow-${version}/cpp";
|
|
|
|
|
2019-08-07 05:48:20 +02:00
|
|
|
ARROW_JEMALLOC_URL = fetchurl {
|
|
|
|
# From
|
|
|
|
# ./cpp/cmake_modules/ThirdpartyToolchain.cmake
|
|
|
|
# ./cpp/thirdparty/versions.txt
|
2019-10-07 08:48:25 +02:00
|
|
|
url =
|
2020-05-12 02:34:33 +02:00
|
|
|
"https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2";
|
2021-07-29 21:30:34 +02:00
|
|
|
hash = "sha256-NDMOXOJ2CZ4uiVDZM121qHVomkxqVnUe87HYxTf4h/Y=";
|
2019-08-07 05:48:20 +02:00
|
|
|
};
|
|
|
|
|
2020-08-19 22:13:48 +02:00
|
|
|
ARROW_MIMALLOC_URL = fetchurl {
|
|
|
|
# From
|
|
|
|
# ./cpp/cmake_modules/ThirdpartyToolchain.cmake
|
|
|
|
# ./cpp/thirdparty/versions.txt
|
|
|
|
url =
|
2021-07-29 21:30:34 +02:00
|
|
|
"https://github.com/microsoft/mimalloc/archive/v1.7.2.tar.gz";
|
|
|
|
hash = "sha256-sZEuNUVlpLaYQQ91g8D4OTSm27Ot5Uq33csVaTIJNr0=";
|
2020-08-19 22:13:48 +02:00
|
|
|
};
|
|
|
|
|
2018-10-13 10:12:26 +02:00
|
|
|
patches = [
|
|
|
|
# patch to fix python-test
|
|
|
|
./darwin.patch
|
2019-10-07 08:48:25 +02:00
|
|
|
];
|
2018-10-04 00:37:12 +02:00
|
|
|
|
2019-10-07 08:48:25 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
autoconf # for vendored jemalloc
|
|
|
|
flatbuffers
|
2019-07-20 21:24:12 +02:00
|
|
|
] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2019-04-06 01:08:22 +02:00
|
|
|
buildInputs = [
|
2019-10-07 08:48:25 +02:00
|
|
|
boost
|
|
|
|
brotli
|
|
|
|
flatbuffers
|
|
|
|
gflags
|
|
|
|
glog
|
|
|
|
gtest
|
|
|
|
lz4
|
|
|
|
rapidjson
|
2021-01-26 17:35:44 +01:00
|
|
|
re2
|
2019-10-07 08:48:25 +02:00
|
|
|
snappy
|
|
|
|
thrift
|
2020-08-19 22:13:48 +02:00
|
|
|
utf8proc
|
2019-10-07 08:48:25 +02:00
|
|
|
zlib
|
|
|
|
zstd
|
2020-05-12 02:34:33 +02:00
|
|
|
] ++ lib.optionals enableShared [
|
|
|
|
python3.pkgs.python
|
|
|
|
python3.pkgs.numpy
|
2019-04-06 01:08:22 +02:00
|
|
|
];
|
2018-03-16 21:19:24 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
2018-10-13 10:12:26 +02:00
|
|
|
patchShebangs build-support/
|
2018-03-16 21:19:24 +01:00
|
|
|
'';
|
|
|
|
|
2018-03-19 01:13:16 +01:00
|
|
|
cmakeFlags = [
|
2020-02-11 11:57:42 +01:00
|
|
|
"-DCMAKE_FIND_PACKAGE_PREFER_CONFIG=ON"
|
2020-08-19 22:13:48 +02:00
|
|
|
"-DARROW_BUILD_SHARED=${if enableShared then "ON" else "OFF"}"
|
|
|
|
"-DARROW_BUILD_STATIC=${if enableShared then "OFF" else "ON"}"
|
2019-01-21 03:14:30 +01:00
|
|
|
"-DARROW_BUILD_TESTS=ON"
|
2020-08-19 22:13:48 +02:00
|
|
|
"-DARROW_VERBOSE_THIRDPARTY_BUILD=ON"
|
2019-04-06 01:08:22 +02:00
|
|
|
"-DARROW_DEPENDENCY_SOURCE=SYSTEM"
|
2021-10-29 08:01:01 +02:00
|
|
|
"-DThrift_SOURCE=AUTO" # search for Thrift using pkg-config (ThriftConfig.cmake requires OpenSSL and libevent)
|
2020-08-19 22:13:48 +02:00
|
|
|
"-DARROW_DEPENDENCY_USE_SHARED=${if enableShared then "ON" else "OFF"}"
|
2021-04-27 09:51:50 +02:00
|
|
|
"-DARROW_COMPUTE=ON"
|
|
|
|
"-DARROW_CSV=ON"
|
|
|
|
"-DARROW_DATASET=ON"
|
|
|
|
"-DARROW_JSON=ON"
|
2019-09-26 22:51:28 +02:00
|
|
|
"-DARROW_PLASMA=ON"
|
2019-12-16 13:22:20 +01:00
|
|
|
# Disable Python for static mode because openblas is currently broken there.
|
|
|
|
"-DARROW_PYTHON=${if enableShared then "ON" else "OFF"}"
|
2020-02-11 11:57:42 +01:00
|
|
|
"-DARROW_USE_GLOG=ON"
|
|
|
|
"-DARROW_WITH_BROTLI=ON"
|
|
|
|
"-DARROW_WITH_LZ4=ON"
|
|
|
|
"-DARROW_WITH_SNAPPY=ON"
|
2020-08-19 22:13:48 +02:00
|
|
|
"-DARROW_WITH_UTF8PROC=ON"
|
2020-02-11 11:57:42 +01:00
|
|
|
"-DARROW_WITH_ZLIB=ON"
|
|
|
|
"-DARROW_WITH_ZSTD=ON"
|
2020-08-19 22:13:48 +02:00
|
|
|
"-DARROW_MIMALLOC=ON"
|
2020-02-11 11:57:42 +01:00
|
|
|
# Parquet options:
|
|
|
|
"-DARROW_PARQUET=ON"
|
|
|
|
"-DPARQUET_BUILD_EXECUTABLES=ON"
|
2019-07-20 21:24:12 +02:00
|
|
|
] ++ lib.optionals (!enableShared) [
|
2019-12-16 13:22:20 +01:00
|
|
|
"-DARROW_TEST_LINKAGE=static"
|
2020-02-27 18:50:23 +01: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 21:24:12 +02:00
|
|
|
] ++ lib.optional (!stdenv.isx86_64) "-DARROW_USE_SIMD=OFF";
|
2018-03-19 01:13:16 +01:00
|
|
|
|
2021-04-27 09:51:50 +02:00
|
|
|
ARROW_XSIMD_URL = xsimd.src;
|
|
|
|
|
2018-10-13 10:12:26 +02:00
|
|
|
doInstallCheck = true;
|
2020-08-19 22:13:48 +02:00
|
|
|
ARROW_TEST_DATA =
|
|
|
|
if doInstallCheck then "${arrow-testing}/data" else null;
|
2019-10-07 08:48:25 +02:00
|
|
|
PARQUET_TEST_DATA =
|
|
|
|
if doInstallCheck then "${parquet-testing}/data" else null;
|
2021-01-26 17:35:44 +01: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 10:12:26 +02:00
|
|
|
installCheckInputs = [ perl which ];
|
2020-02-27 18:50:23 +01:00
|
|
|
installCheckPhase =
|
|
|
|
let
|
2019-07-20 21:24:12 +02:00
|
|
|
excludedTests = lib.optionals stdenv.isDarwin [
|
2019-10-08 09:23:07 +02: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 12:18:42 +01:00
|
|
|
--exclude-regex '^(${builtins.concatStringsSep "|" excludedTests})$'
|
2020-02-27 18:50:23 +01:00
|
|
|
'';
|
2018-10-13 10:12:26 +02:00
|
|
|
|
2021-05-29 09:30:51 +02:00
|
|
|
meta = with lib; {
|
2018-03-16 21:19:24 +01:00
|
|
|
description = "A cross-language development platform for in-memory data";
|
2019-10-07 08:48:25 +02:00
|
|
|
homepage = "https://arrow.apache.org/";
|
2021-05-29 09:30:51 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ tobim veprbl ];
|
2018-03-16 21:19:24 +01:00
|
|
|
};
|
|
|
|
}
|