2021-05-17 09:21:44 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, postgresql, openssl, libkrb5 }:
|
2017-09-18 23:42:16 +00:00
|
|
|
|
2017-09-29 10:16:17 +00:00
|
|
|
# # To enable on NixOS:
|
|
|
|
# config.services.postgresql = {
|
|
|
|
# extraPlugins = [ pkgs.timescaledb ];
|
|
|
|
# extraConfig = "shared_preload_libraries = 'timescaledb'";
|
|
|
|
# }
|
|
|
|
|
2017-09-18 23:42:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "timescaledb";
|
2021-05-06 04:20:00 +00:00
|
|
|
version = "2.2.1";
|
2017-09-18 23:42:16 +00:00
|
|
|
|
2018-04-02 07:40:07 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-05-17 09:21:44 +00:00
|
|
|
buildInputs = [ postgresql openssl libkrb5 ];
|
2017-09-18 23:42:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-04-02 07:40:07 +00:00
|
|
|
owner = "timescale";
|
|
|
|
repo = "timescaledb";
|
|
|
|
rev = "refs/tags/${version}";
|
2021-05-06 04:20:00 +00:00
|
|
|
sha256 = "1hk3yyiddhz9lxls981101malzs9b5vnw9wiiw2cxzcslkmg2gv9";
|
2017-09-18 23:42:16 +00:00
|
|
|
};
|
|
|
|
|
2021-04-14 04:20:00 +00:00
|
|
|
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ "-DLINTER=OFF" ];
|
2019-06-14 21:20:00 +00:00
|
|
|
|
2018-04-02 07:40:07 +00:00
|
|
|
# Fix the install phase which tries to install into the pgsql extension dir,
|
|
|
|
# and cannot be manually overridden. This is rather fragile but works OK.
|
2021-04-14 04:20:00 +00:00
|
|
|
postPatch = ''
|
2018-04-02 07:40:07 +00:00
|
|
|
for x in CMakeLists.txt sql/CMakeLists.txt; do
|
|
|
|
substituteInPlace "$x" \
|
2019-07-01 14:18:03 +00:00
|
|
|
--replace 'DESTINATION "''${PG_SHAREDIR}/extension"' "DESTINATION \"$out/share/postgresql/extension\""
|
2018-04-02 07:40:07 +00:00
|
|
|
done
|
|
|
|
|
2019-03-25 21:20:00 +00:00
|
|
|
for x in src/CMakeLists.txt src/loader/CMakeLists.txt tsl/src/CMakeLists.txt; do
|
2018-04-02 07:40:07 +00:00
|
|
|
substituteInPlace "$x" \
|
|
|
|
--replace 'DESTINATION ''${PG_PKGLIBDIR}' "DESTINATION \"$out/lib\""
|
|
|
|
done
|
2017-09-18 23:42:16 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-09-29 10:16:17 +00:00
|
|
|
description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.timescale.com/";
|
2021-04-14 04:20:00 +00:00
|
|
|
changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
|
2019-08-02 05:49:52 +00:00
|
|
|
maintainers = with maintainers; [ volth marsam ];
|
2019-03-25 21:20:00 +00:00
|
|
|
platforms = postgresql.meta.platforms;
|
2018-11-04 13:30:14 +00:00
|
|
|
license = licenses.asl20;
|
2017-09-18 23:42:16 +00:00
|
|
|
};
|
|
|
|
}
|