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";
|
2022-02-23 15:22:26 +00:00
|
|
|
version = "2.6.0";
|
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 {
|
2022-02-23 15:22:26 +00:00
|
|
|
owner = "timescale";
|
|
|
|
repo = "timescaledb";
|
2021-10-28 14:33:51 +00:00
|
|
|
# some branches are named like tags which confuses git
|
2022-02-23 15:22:26 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
sha256 = "sha256-OiY7u7n78k+LsXo/B463p02tw5Fmq/OiVcLcZVutUdA=";
|
2017-09-18 23:42:16 +00:00
|
|
|
};
|
|
|
|
|
2021-08-05 00:28:21 +00:00
|
|
|
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]
|
2021-04-14 04:20:00 +00:00
|
|
|
++ 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";
|
2022-02-23 15:22:26 +00:00
|
|
|
homepage = "https://www.timescale.com/";
|
|
|
|
changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
|
2019-08-02 05:49:52 +00:00
|
|
|
maintainers = with maintainers; [ volth marsam ];
|
2022-02-23 15:22:26 +00:00
|
|
|
platforms = postgresql.meta.platforms;
|
|
|
|
license = licenses.asl20;
|
|
|
|
broken = versionOlder postgresql.version "12";
|
2017-09-18 23:42:16 +00:00
|
|
|
};
|
|
|
|
}
|