nixpkgs-suyu/pkgs/servers/clickhouse/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

2018-07-29 00:56:04 +02:00
{ stdenv, fetchFromGitHub, cmake, libtool
, boost, capnproto, cctz, clang-unwrapped, double-conversion, gperftools, icu
, libcpuid, libxml2, lld, llvm, lz4 , mysql, openssl, poco, re2, rdkafka
2018-08-24 15:23:36 +02:00
, readline, sparsehash, unixODBC, zstd, ninja, jemalloc
2018-06-11 10:37:06 +02:00
}:
2017-03-27 03:06:23 +02:00
stdenv.mkDerivation rec {
name = "clickhouse-${version}";
version = "18.14.9";
2017-03-27 03:06:23 +02:00
src = fetchFromGitHub {
owner = "yandex";
repo = "ClickHouse";
rev = "v${version}-stable";
sha256 = "1dsqwihh48fgsjy3jmfjk5271dw3052agw5wpfdm054nkkych86i";
2017-03-27 03:06:23 +02:00
};
nativeBuildInputs = [ cmake libtool ninja ];
buildInputs = [
2018-07-29 00:56:04 +02: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 15:23:36 +02:00
readline sparsehash unixODBC zstd jemalloc
];
2017-03-27 03:06:23 +02:00
cmakeFlags = [
"-DENABLE_TESTS=OFF"
"-DUNBUNDLED=ON"
"-DUSE_STATIC_LIBRARIES=OFF"
2018-08-24 15:23:36 +02:00
"-DUSE_INTERNAL_SSL_LIBRARY=False"
];
hardeningDisable = [ "format" ];
patchPhase = ''
patchShebangs .
'';
2017-03-27 03:06:23 +02:00
2018-07-29 00:56:04 +02:00
postInstall = ''
rm -rf $out/share/clickhouse-test
'';
2017-03-27 03:06:23 +02: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;
};
}