uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
85
pkgs/development/libraries/tiledb/default.nix
Normal file
85
pkgs/development/libraries/tiledb/default.nix
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, zlib
|
||||
, lz4
|
||||
, bzip2
|
||||
, zstd
|
||||
, spdlog_0
|
||||
, tbb
|
||||
, openssl
|
||||
, boost
|
||||
, libpqxx
|
||||
, clang-tools
|
||||
, catch2
|
||||
, python3
|
||||
, gtest
|
||||
, doxygen
|
||||
, fixDarwinDylibNames
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tiledb";
|
||||
version = "2.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "TileDB-Inc";
|
||||
repo = "TileDB";
|
||||
rev = version;
|
||||
sha256 = "sha256-3Z5+QUzo2f24q11j6s8KX2vHLFkipFvGk2VFComWW/o=";
|
||||
};
|
||||
|
||||
# (bundled) blosc headers have a warning on some archs that it will be using
|
||||
# unaccelerated routines.
|
||||
cmakeFlags = [
|
||||
"-DTILEDB_WERROR=0"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
clang-tools
|
||||
cmake
|
||||
python3
|
||||
doxygen
|
||||
] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
||||
|
||||
checkInputs = [
|
||||
gtest
|
||||
];
|
||||
|
||||
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 ];
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue