nixpkgs/pkgs/development/libraries/tiledb/default.nix
Vladimír Čunát 336bc8283b
Re-Revert "Merge #101508: libraw: 0.20.0 -> 0.20.2"
This reverts commit c778945806.

I believe this is exactly what brings the staging branch into
the right shape after the last merge from master (through staging-next);
otherwise part of staging changes would be lost
(due to being already reachable from master but reverted).
2020-10-26 08:19:17 +01:00

88 lines
1.6 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, zlib
, lz4
, bzip2
, zstd
, spdlog_0
, tbb
, openssl
, boost
, libpqxx
, clang-tools
, catch2
, python
, gtest
, doxygen
, fixDarwinDylibNames
}:
stdenv.mkDerivation rec {
pname = "tiledb";
version = "2.0.7";
src = fetchFromGitHub {
owner = "TileDB-Inc";
repo = "TileDB";
rev = version;
sha256 = "00g8ibsbnl4wjfx3qg4qy6s7z6dsj898j0yqfhw1gjr1pb5dsapb";
};
# (bundled) blosc headers have a warning on some archs that it will be using
# unaccelerated routines.
cmakeFlags = [
"-DTILEDB_WERROR=0"
];
nativeBuildInputs = [
clang-tools
cmake
python
doxygen
] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
checkInputs = [
gtest
];
enableParallelBuilding = true;
buildInputs = [
catch2
zlib
lz4
bzip2
zstd
spdlog_0
tbb
openssl
boost
libpqxx
];
# emulate the process of pulling catch down
postPatch = ''
mkdir -p build/externals/src/ep_catch
ln -sf ${catch2}/include/catch2 build/externals/src/ep_catch/single_include
'';
doCheck = false; # 9 failing tests due to what seems an overflow
installTargets = [ "install-tiledb" "doc" ];
postInstall = lib.optionalString stdenv.isDarwin ''
install_name_tool -add_rpath ${tbb}/lib $out/lib/libtiledb.dylib
'';
meta = with lib; {
description = "TileDB allows you to manage the massive dense and sparse multi-dimensional array data";
homepage = "https://github.com/TileDB-Inc/TileDB";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ rakesh4g ];
};
}