nixpkgs/pkgs/development/libraries/duckdb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
2.4 KiB
Nix
Raw Normal View History

2022-02-12 14:23:04 +03:00
{ lib
, stdenv
2020-05-27 04:27:11 +03:00
, fetchFromGitHub
2022-06-21 17:10:52 +03:00
, fetchpatch
2020-05-27 04:27:11 +03:00
, cmake
2022-02-11 23:53:27 +03:00
, ninja
2022-02-12 14:23:04 +03:00
, openssl
, openjdk11
, unixODBC
, withHttpFs ? true
, withJdbc ? false
, withOdbc ? false
2020-05-27 04:27:11 +03:00
}:
2022-02-12 14:23:04 +03:00
let
enableFeature = yes: if yes then "ON" else "OFF";
in
2020-05-27 04:27:11 +03:00
stdenv.mkDerivation rec {
pname = "duckdb";
2022-09-06 13:21:25 +03:00
version = "0.5.0";
2020-05-27 04:27:11 +03:00
src = fetchFromGitHub {
2021-10-22 11:42:51 +03:00
owner = pname;
repo = pname;
2020-05-27 04:27:11 +03:00
rev = "v${version}";
2022-09-06 13:21:25 +03:00
sha256 = "sha256-dU8JXb++8OMEokr+4OyxLvcEc0vmdBvKDLxjeaWNkq0=";
2020-05-27 04:27:11 +03:00
};
2022-02-12 14:23:04 +03:00
postPatch = ''
substituteInPlace CMakeLists.txt --subst-var-by DUCKDB_VERSION "v${version}"
'';
2022-02-11 23:53:45 +03:00
cmakeFlags = [
2022-04-30 15:48:25 +03:00
"-DBUILD_EXCEL_EXTENSION=ON"
2022-02-12 14:23:04 +03:00
"-DBUILD_FTS_EXTENSION=ON"
"-DBUILD_HTTPFS_EXTENSION=${enableFeature withHttpFs}"
"-DBUILD_ICU_EXTENSION=ON"
2022-04-30 15:48:25 +03:00
"-DBUILD_JSON_EXTENSION=ON"
2022-02-12 14:23:04 +03:00
"-DBUILD_ODBC_DRIVER=${enableFeature withOdbc}"
"-DBUILD_PARQUET_EXTENSION=ON"
"-DBUILD_TPCDS_EXTENSION=ON"
2022-04-30 15:48:25 +03:00
"-DBUILD_TPCE=ON"
2022-02-12 14:23:04 +03:00
"-DBUILD_TPCH_EXTENSION=ON"
"-DBUILD_VISUALIZER_EXTENSION=ON"
"-DJDBC_DRIVER=${enableFeature withJdbc}"
2022-02-11 23:53:45 +03:00
];
2022-02-12 14:23:04 +03:00
2022-05-01 17:19:26 +03:00
doInstallCheck = true;
2022-09-06 13:21:25 +03:00
preInstallCheck = ''
export HOME="$(mktemp -d)"
'' + lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH="$out/lib''${DYLD_LIBRARY_PATH:+:}''${DYLD_LIBRARY_PATH}"
'';
installCheckPhase =
let
excludes = map (pattern: "exclude:'${pattern}'") [
"*test_slow"
"Test file buffers for reading/writing to file"
"[test_slow]"
"test/common/test_cast_hugeint.test"
"test/sql/copy/csv/test_csv_remote.test"
"test/sql/copy/parquet/test_parquet_remote.test"
2022-06-21 17:10:52 +03:00
"test/sql/copy/parquet/test_parquet_remote_foreign_files.test"
] ++ lib.optionals stdenv.isAarch64 [
"test/sql/aggregate/aggregates/test_kurtosis.test"
"test/sql/aggregate/aggregates/test_skewness.test"
"test/sql/function/list/aggregates/skewness.test"
];
in
''
runHook preInstallCheck
2022-05-01 17:19:26 +03:00
$PWD/test/unittest ${lib.concatStringsSep " " excludes}
2022-05-01 17:19:26 +03:00
runHook postInstallCheck
'';
2022-05-01 17:19:26 +03:00
2022-02-11 23:53:27 +03:00
nativeBuildInputs = [ cmake ninja ];
2022-02-12 14:23:04 +03:00
buildInputs = lib.optionals withHttpFs [ openssl ]
++ lib.optionals withJdbc [ openjdk11 ]
++ lib.optionals withOdbc [ unixODBC ];
2020-05-27 04:27:11 +03:00
meta = with lib; {
2021-10-22 11:42:51 +03:00
homepage = "https://github.com/duckdb/duckdb";
description = "Embeddable SQL OLAP Database Management System";
2020-05-27 04:27:11 +03:00
license = licenses.mit;
platforms = platforms.all;
2022-02-11 23:54:00 +03:00
maintainers = with maintainers; [ costrouc cpcloud ];
2020-05-27 04:27:11 +03:00
};
}