nixpkgs/pkgs/servers/sql/postgresql/ext/timescaledb.nix

47 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, postgresql, openssl }:
2017-09-19 00:42:16 +01:00
2017-09-29 11:16:17 +01:00
# # To enable on NixOS:
# config.services.postgresql = {
# extraPlugins = [ pkgs.timescaledb ];
# extraConfig = "shared_preload_libraries = 'timescaledb'";
# }
2017-09-19 00:42:16 +01:00
stdenv.mkDerivation rec {
pname = "timescaledb";
version = "1.4.2";
2017-09-19 00:42:16 +01:00
nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql openssl ];
2017-09-19 00:42:16 +01:00
src = fetchFromGitHub {
owner = "timescale";
repo = "timescaledb";
rev = "refs/tags/${version}";
sha256 = "06mchpfjh4kskxq5r8b84870gl37xcqdf14n96qjb4nbyw9l8xcc";
2017-09-19 00:42:16 +01:00
};
2019-06-14 22:20:00 +01:00
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ];
# 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.
patchPhase = ''
for x in CMakeLists.txt sql/CMakeLists.txt; do
substituteInPlace "$x" \
--replace 'DESTINATION "''${PG_SHAREDIR}/extension"' "DESTINATION \"$out/share/postgresql/extension\""
done
2019-03-25 21:20:00 +00:00
for x in src/CMakeLists.txt src/loader/CMakeLists.txt tsl/src/CMakeLists.txt; do
substituteInPlace "$x" \
--replace 'DESTINATION ''${PG_PKGLIBDIR}' "DESTINATION \"$out/lib\""
done
2017-09-19 00:42:16 +01:00
'';
meta = with stdenv.lib; {
2017-09-29 11:16:17 +01:00
description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
homepage = https://www.timescale.com/;
maintainers = with maintainers; [ volth marsam ];
2019-03-25 21:20:00 +00:00
platforms = postgresql.meta.platforms;
license = licenses.asl20;
2017-09-19 00:42:16 +01:00
};
}