about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-02-08 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2024-02-08 04:20:00 +0000
commitbdd0e091c3f0063b774496ac4dfc8f5a61e840ab (patch)
treecf76512516071ac30703bc9f38f3e3e0653a05e6
parent4e92e0e0a6937f3466cad3533384ab8c41840cda (diff)
downloadnixlib-bdd0e091c3f0063b774496ac4dfc8f5a61e840ab.tar
nixlib-bdd0e091c3f0063b774496ac4dfc8f5a61e840ab.tar.gz
nixlib-bdd0e091c3f0063b774496ac4dfc8f5a61e840ab.tar.bz2
nixlib-bdd0e091c3f0063b774496ac4dfc8f5a61e840ab.tar.lz
nixlib-bdd0e091c3f0063b774496ac4dfc8f5a61e840ab.tar.xz
nixlib-bdd0e091c3f0063b774496ac4dfc8f5a61e840ab.tar.zst
nixlib-bdd0e091c3f0063b774496ac4dfc8f5a61e840ab.zip
postgresqlPackages.timescaledb: 2.13.1 -> 2.14.0
Diff: https://github.com/timescale/timescaledb/compare/2.13.1...2.14.0

Changelog: https://github.com/timescale/timescaledb/blob/2.14.0/CHANGELOG.md
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index 912bca925d80..1eccedf1fda5 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}";
-  version = "2.13.1";
+  version = "2.14.0";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl libkrb5 ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     owner = "timescale";
     repo = "timescaledb";
     rev = version;
-    hash = "sha256-7OMeH818f/wu55jQS/6pP+hl7ph2Ul5LiLrSDA47SeM=";
+    hash = "sha256-CtuJSLhrgvUAyJDnPvCNH2Rizl0W6SuMjWA6wpDqRtE=";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]