tiledb: init at 1.7.0
This commit is contained in:
parent
eab4adc187
commit
df13589f49
76
pkgs/development/libraries/tiledb/default.nix
Normal file
76
pkgs/development/libraries/tiledb/default.nix
Normal file
@ -0,0 +1,76 @@
|
||||
{ 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.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "TileDB-Inc";
|
||||
repo = "TileDB";
|
||||
rev = version;
|
||||
sha256 = "07wh9q72vsaf5j2m2c6cfmllwhr3m9f8xzg8h0i6mhd7d0wr4lna";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
|
||||
}
|
@ -6638,6 +6638,8 @@ in
|
||||
thin-provisioning-tools = callPackage ../tools/misc/thin-provisioning-tools { };
|
||||
|
||||
tiled = libsForQt5.callPackage ../applications/editors/tiled { };
|
||||
|
||||
tiledb = callPackage ../development/libraries/tiledb { };
|
||||
|
||||
timemachine = callPackage ../applications/audio/timemachine { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user