nixpkgs/pkgs/development/libraries/tiledb/default.nix
2020-03-21 17:53:34 -07:00

77 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, zlib
, lz4
, bzip2
, zstd
, spdlog_0
, tbb
, openssl
, boost
, libpqxx
, clang-tools
, catch2
, python
, gtest
, doxygen
}:
stdenv.mkDerivation rec {
pname = "tiledb";
version = "1.7.6";
src = fetchFromGitHub {
owner = "TileDB-Inc";
repo = "TileDB";
rev = version;
sha256 = "0khxd1w5piqkxjiibnfvxcpk9lb8pi5x95zll5qs7vpbznn56b18";
};
nativeBuildInputs = [
clang-tools
cmake
python
doxygen
];
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" ];
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 = [ "x86_64-linux"];
maintainers = with maintainers; [ rakesh4g ];
};
}