postgresqlPackages.timescaledb: 2.5.2 -> 2.6.0

This commit is contained in:
1000101 2022-02-23 16:22:26 +01:00
parent f724c46b95
commit 9d4d64358e

View file

@ -8,17 +8,17 @@
stdenv.mkDerivation rec {
pname = "timescaledb";
version = "2.5.2";
version = "2.6.0";
nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql openssl libkrb5 ];
src = fetchFromGitHub {
owner = "timescale";
repo = "timescaledb";
owner = "timescale";
repo = "timescaledb";
# some branches are named like tags which confuses git
rev = "refs/tags/${version}";
sha256 = "sha256-eq2dljS8+0fRcA7hQr5yOV1FXtMyaajjYFqpw+DYt1A=";
rev = "refs/tags/${version}";
sha256 = "sha256-OiY7u7n78k+LsXo/B463p02tw5Fmq/OiVcLcZVutUdA=";
};
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]
@ -40,11 +40,11 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
homepage = "https://www.timescale.com/";
changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
homepage = "https://www.timescale.com/";
changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
maintainers = with maintainers; [ volth marsam ];
platforms = postgresql.meta.platforms;
license = licenses.asl20;
broken = versionOlder postgresql.version "12";
platforms = postgresql.meta.platforms;
license = licenses.asl20;
broken = versionOlder postgresql.version "12";
};
}