2019-01-06 04:16:10 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, cmake, libtool
|
2018-07-28 23:56:04 +01:00
|
|
|
, boost, capnproto, cctz, clang-unwrapped, double-conversion, gperftools, icu
|
|
|
|
, libcpuid, libxml2, lld, llvm, lz4 , mysql, openssl, poco, re2, rdkafka
|
2018-08-24 14:23:36 +01:00
|
|
|
, readline, sparsehash, unixODBC, zstd, ninja, jemalloc
|
2018-06-11 09:37:06 +01:00
|
|
|
}:
|
2017-03-27 02:06:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clickhouse-${version}";
|
2019-01-04 03:34:46 +00:00
|
|
|
version = "18.16.1";
|
2017-03-27 02:06:23 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-08-07 23:54:32 +01:00
|
|
|
owner = "yandex";
|
|
|
|
repo = "ClickHouse";
|
|
|
|
rev = "v${version}-stable";
|
2019-01-04 03:34:46 +00:00
|
|
|
sha256 = "02slllcan7w3ln4c9yvxc8w0h2vszd7n0wshbn4bra2hb6mrzyp8";
|
2017-03-27 02:06:23 +01:00
|
|
|
};
|
|
|
|
|
2018-08-07 23:54:32 +01:00
|
|
|
nativeBuildInputs = [ cmake libtool ninja ];
|
2017-12-27 15:15:33 +00:00
|
|
|
buildInputs = [
|
2018-07-28 23:56:04 +01:00
|
|
|
boost capnproto cctz clang-unwrapped double-conversion gperftools icu
|
|
|
|
libcpuid libxml2 lld llvm lz4 mysql.connector-c openssl poco re2 rdkafka
|
2018-08-24 14:23:36 +01:00
|
|
|
readline sparsehash unixODBC zstd jemalloc
|
2017-12-27 15:15:33 +00:00
|
|
|
];
|
2017-03-27 02:06:23 +01:00
|
|
|
|
2018-08-07 23:54:32 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DENABLE_TESTS=OFF"
|
|
|
|
"-DUNBUNDLED=ON"
|
|
|
|
"-DUSE_STATIC_LIBRARIES=OFF"
|
2018-08-24 14:23:36 +01:00
|
|
|
"-DUSE_INTERNAL_SSL_LIBRARY=False"
|
2018-08-07 23:54:32 +01:00
|
|
|
];
|
|
|
|
|
2019-01-06 04:16:10 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/yandex/ClickHouse/commit/afbcdf2f00a04e747c5279414cf4691f29bb5cc2.patch";
|
|
|
|
sha256 = "17y891q0dp179w3jv32h74pbfwyzgnz4dxxwv73vzdwvys4i8c8z";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs copy_headers.sh
|
2018-08-07 23:54:32 +01:00
|
|
|
'';
|
2017-03-27 02:06:23 +01:00
|
|
|
|
2018-07-28 23:56:04 +01:00
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/share/clickhouse-test
|
2018-12-19 14:06:53 +00:00
|
|
|
|
|
|
|
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>"
|
2018-07-28 23:56:04 +01:00
|
|
|
'';
|
|
|
|
|
2019-01-06 04:16:10 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2017-03-27 02:06:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://clickhouse.yandex/;
|
|
|
|
description = "Column-oriented database management system";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|