nixpkgs/pkgs/servers/clickhouse/default.nix

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

223 lines
6.9 KiB
Nix
Raw Normal View History

{ lib
2023-06-12 17:39:12 +00:00
, llvmPackages
, fetchFromGitHub
2023-06-25 17:18:39 +00:00
, fetchpatch
, cmake
, ninja
, python3
, perl
2023-11-12 06:30:34 +00:00
, nasm
, yasm
2021-11-21 19:38:57 +00:00
, nixosTests
2023-06-12 17:39:12 +00:00
, darwin
, findutils
2024-04-04 20:48:58 +00:00
, libiconv
2023-05-18 12:41:03 +00:00
, rustSupport ? true
, corrosion
, rustc
, cargo
, rustPlatform
2018-06-11 08:37:06 +00:00
}:
2017-03-27 01:06:23 +00:00
2023-06-12 17:39:12 +00:00
let
inherit (llvmPackages) stdenv;
mkDerivation = (
if stdenv.hostPlatform.isDarwin
2023-11-12 06:30:34 +00:00
then darwin.apple_sdk_11_0.llvmPackages_16.stdenv
2023-06-12 17:39:12 +00:00
else llvmPackages.stdenv).mkDerivation;
in mkDerivation rec {
pname = "clickhouse";
2024-08-15 11:39:24 +00:00
version = "24.3.7.30";
src = fetchFromGitHub rec {
owner = "ClickHouse";
repo = "ClickHouse";
2024-04-04 20:48:58 +00:00
rev = "v${version}-lts";
2020-07-07 16:57:20 +00:00
fetchSubmodules = true;
2023-06-21 06:50:22 +00:00
name = "clickhouse-${rev}.tar.gz";
2024-08-15 11:39:24 +00:00
hash = "sha256-xIqn1cRbuD3NpUC2c7ZzvC8EAmg+XOXCkp+g/HTdIc0=";
postFetch = ''
2023-06-12 17:39:12 +00:00
# delete files that make the source too big
rm -rf $out/contrib/llvm-project/llvm/test
rm -rf $out/contrib/llvm-project/clang/test
rm -rf $out/contrib/croaring/benchmarks
# fix case insensitivity on macos https://github.com/NixOS/nixpkgs/issues/39308
rm -rf $out/contrib/sysroot/linux-*
rm -rf $out/contrib/liburing/man
2023-06-21 06:50:22 +00:00
# compress to not exceed the 2GB output limit
# try to make a deterministic tarball
tar -I 'gzip -n' \
--sort=name \
--mtime=1970-01-01 \
2023-06-25 17:18:39 +00:00
--owner=0 --group=0 \
2023-06-21 06:50:22 +00:00
--numeric-owner --mode=go=rX,u+rw,a-s \
--transform='s@^@source/@S' \
-cf temp -C "$out" .
rm -r "$out"
mv temp "$out"
'';
2017-03-27 01:06:23 +00:00
};
2023-12-07 12:10:01 +00:00
patches = [
# They updated the Cargo.toml without updating the Cargo.lock :/
(fetchpatch {
url = "https://github.com/ClickHouse/ClickHouse/commit/bccd33932b5fe17ced2dc2f27813da0b1c034afa.patch";
revert = true;
hash = "sha256-4idwr+G8WGuT/VILKtDIJIvbCvi6pZokJFze4dP6ExE=";
})
(fetchpatch {
url = "https://github.com/ClickHouse/ClickHouse/commit/b6bd5ecb199ef8a10e3008a4ea3d96087db8a8c1.patch";
revert = true;
hash = "sha256-nbb/GV2qWEZ+BEfT6/9//yZf4VWdhOdJCI3PLeh6o0M=";
})
];
strictDeps = true;
nativeBuildInputs = [
cmake
ninja
python3
perl
2023-11-12 06:30:34 +00:00
llvmPackages.lld
] ++ lib.optionals stdenv.hostPlatform.isx86_64 [
2023-11-12 06:30:34 +00:00
nasm
yasm
2023-06-12 17:39:12 +00:00
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
llvmPackages.bintools
findutils
darwin.bootstrap_cmds
2023-05-18 12:41:03 +00:00
] ++ lib.optionals rustSupport [
rustc
cargo
rustPlatform.cargoSetupHook
];
2017-03-27 01:06:23 +00:00
2024-04-04 20:48:58 +00:00
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
# their vendored version is too old and missing this patch: https://github.com/corrosion-rs/corrosion/pull/205
corrosionSrc = if rustSupport then fetchFromGitHub {
owner = "corrosion-rs";
repo = "corrosion";
rev = "v0.3.5";
hash = "sha256-r/jrck4RiQynH1+Hx4GyIHpw/Kkr8dHe1+vTHg+fdRs=";
} else null;
corrosionDeps = if rustSupport then rustPlatform.fetchCargoTarball {
src = corrosionSrc;
name = "corrosion-deps";
preBuild = "cd generator";
hash = "sha256-dhUgpwSjE9NZ2mCkhGiydI51LIOClA5wwk1O3mnnbM8=";
} else null;
2023-11-12 06:30:34 +00:00
rustDeps = if rustSupport then rustPlatform.fetchCargoTarball {
2023-05-18 12:41:03 +00:00
inherit src;
2023-11-12 06:30:34 +00:00
name = "rust-deps";
preBuild = "cd rust";
2024-04-04 20:48:58 +00:00
hash = "sha256-rbEfCRB2QAZ2WBgSLYYUqeYtI4Y5d9oQ2G8/mPirIp4=";
2023-05-18 12:41:03 +00:00
} else null;
dontCargoSetupPostUnpack = true;
postUnpack = lib.optionalString rustSupport ''
pushd source
rm -rf contrib/corrosion
cp -r --no-preserve=mode $corrosionSrc contrib/corrosion
2023-05-18 12:41:03 +00:00
pushd contrib/corrosion/generator
cargoDeps="$corrosionDeps" cargoSetupPostUnpackHook
corrosionDepsCopy="$cargoDepsCopy"
popd
2023-11-12 06:30:34 +00:00
pushd rust
cargoDeps="$rustDeps" cargoSetupPostUnpackHook
rustDepsCopy="$cargoDepsCopy"
cat .cargo/config.toml >> .cargo/config.toml.in
cat .cargo/config.toml >> skim/.cargo/config.toml.in
rm .cargo/config.toml
2023-05-18 12:41:03 +00:00
popd
popd
'';
2020-07-07 16:57:20 +00:00
postPatch = ''
patchShebangs src/
substituteInPlace src/Storages/System/StorageSystemLicenses.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/check-style/check-duplicate-includes.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/check-style/check-ungrouped-includes.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/list-licenses/list-licenses.sh \
--replace 'git rev-parse --show-toplevel' '$src'
substituteInPlace utils/check-style/check-style \
--replace 'git rev-parse --show-toplevel' '$src'
2023-06-12 17:39:12 +00:00
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
sed -i 's|gfind|find|' cmake/tools.cmake
sed -i 's|ggrep|grep|' cmake/tools.cmake
2023-05-18 12:41:03 +00:00
'' + lib.optionalString rustSupport ''
pushd contrib/corrosion/generator
cargoDepsCopy="$corrosionDepsCopy" cargoSetupPostPatchHook
popd
2023-11-12 06:30:34 +00:00
pushd rust
cargoDepsCopy="$rustDepsCopy" cargoSetupPostPatchHook
2023-05-18 12:41:03 +00:00
popd
cargoSetupPostPatchHook() { true; }
2023-11-15 10:49:06 +00:00
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
# Make sure Darwin invokes lld.ld64 not lld.
substituteInPlace cmake/tools.cmake \
--replace '--ld-path=''${LLD_PATH}' '-fuse-ld=lld'
2020-07-07 16:57:20 +00:00
'';
cmakeFlags = [
"-DENABLE_TESTS=OFF"
2023-06-12 17:39:12 +00:00
"-DCOMPILER_CACHE=disabled"
2020-12-05 12:45:15 +00:00
"-DENABLE_EMBEDDED_COMPILER=ON"
] ++
lib.optional (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) "-DNO_ARMV81_OR_HIGHER=1";
2024-04-04 20:48:58 +00:00
env = {
NIX_CFLAGS_COMPILE =
# undefined reference to '__sync_val_compare_and_swap_16'
lib.optionalString stdenv.hostPlatform.isx86_64 " -mcx16" +
# Silence ``-Wimplicit-const-int-float-conversion` error in MemoryTracker.cpp and
# ``-Wno-unneeded-internal-declaration` TreeOptimizer.cpp.
lib.optionalString stdenv.hostPlatform.isDarwin " -Wno-implicit-const-int-float-conversion -Wno-unneeded-internal-declaration";
2023-11-15 10:49:06 +00:00
};
2023-06-25 17:18:39 +00:00
# https://github.com/ClickHouse/ClickHouse/issues/49988
hardeningDisable = [ "fortify" ];
2018-07-28 22:56:04 +00:00
postInstall = ''
rm -rf $out/share/clickhouse-test
sed -i -e '\!<log>/var/log/clickhouse-server/clickhouse-server\.log</log>!d' \
$out/etc/clickhouse-server/config.xml
substituteInPlace $out/etc/clickhouse-server/config.xml \
--replace "<errorlog>/var/log/clickhouse-server/clickhouse-server.err.log</errorlog>" "<console>1</console>"
substituteInPlace $out/etc/clickhouse-server/config.xml \
--replace "<level>trace</level>" "<level>warning</level>"
2018-07-28 22:56:04 +00:00
'';
# Builds in 7+h with 2 cores, and ~20m with a big-parallel builder.
requiredSystemFeatures = [ "big-parallel" ];
2021-11-21 19:38:57 +00:00
passthru.tests.clickhouse = nixosTests.clickhouse;
meta = with lib; {
2022-09-03 09:33:45 +00:00
homepage = "https://clickhouse.com";
2017-03-27 01:06:23 +00:00
description = "Column-oriented database management system";
license = licenses.asl20;
2024-04-04 20:48:58 +00:00
maintainers = with maintainers; [ orivej mbalatsko ];
# not supposed to work on 32-bit https://github.com/ClickHouse/ClickHouse/pull/23959#issuecomment-835343685
2023-06-12 17:39:12 +00:00
platforms = lib.filter (x: (lib.systems.elaborate x).is64bit) (platforms.linux ++ platforms.darwin);
broken = stdenv.buildPlatform != stdenv.hostPlatform;
2017-03-27 01:06:23 +00:00
};
}