Skip to content

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

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

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
buildPostgresqlExtension rec {
44
pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}";
5-
version = "2.14.2";
5+
version = "2.17.2";
66

77
nativeBuildInputs = [ cmake ];
88
buildInputs = [ openssl libkrb5 ];
@@ -11,7 +11,7 @@ buildPostgresqlExtension rec {
1111
owner = "timescale";
1212
repo = "timescaledb";
1313
rev = version;
14-
hash = "sha256-gJViEWHtIczvIiQKuvvuwCfWJMxAYoBhCHhD75no6r0=";
14+
hash = "sha256-gPsAebMUBuAwP6Hoi9/vrc2IFsmTbL0wQH1g6/2k2d4=";
1515
};
1616

1717
cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]
@@ -41,11 +41,6 @@ buildPostgresqlExtension rec {
4141
maintainers = [ maintainers.kirillrdy ];
4242
platforms = postgresql.meta.platforms;
4343
license = with licenses; if enableUnfree then tsl else asl20;
44-
broken = versionOlder postgresql.version "13" ||
45-
# timescaledb supports PostgreSQL 17 from 2.17.0 on:
46-
# https://github.com/timescale/timescaledb/releases/tag/2.17.0
47-
# We can't upgrade to it, yet, because this would imply dropping support for
48-
# PostgreSQL 13, which is a breaking change.
49-
(versionAtLeast postgresql.version "17" && version == "2.14.2");
44+
broken = versionOlder postgresql.version "14";
5045
};
5146
}

0 commit comments

Comments
 (0)