about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-11-28 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-11-28 04:20:00 +0000
commit60f8cd13cc02b2d700fea5989575f08ee5225f64 (patch)
treeef06ab4e2cdc20e1d8745716d8750a6fb19fc99c /pkgs/servers/sql
parente92039b55bcd58469325ded85d4f58dd5a4eaf58 (diff)
downloadnixlib-60f8cd13cc02b2d700fea5989575f08ee5225f64.tar
nixlib-60f8cd13cc02b2d700fea5989575f08ee5225f64.tar.gz
nixlib-60f8cd13cc02b2d700fea5989575f08ee5225f64.tar.bz2
nixlib-60f8cd13cc02b2d700fea5989575f08ee5225f64.tar.lz
nixlib-60f8cd13cc02b2d700fea5989575f08ee5225f64.tar.xz
nixlib-60f8cd13cc02b2d700fea5989575f08ee5225f64.tar.zst
nixlib-60f8cd13cc02b2d700fea5989575f08ee5225f64.zip
postgresqlPackages.timescaledb: 2.12.2 -> 2.13.0
Diff: https://github.com/timescale/timescaledb/compare/2.12.2...2.13.0

Changelog: https://github.com/timescale/timescaledb/blob/2.13.0/CHANGELOG.md
Diffstat (limited to 'pkgs/servers/sql')
-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 a567db948121..307171adeb39 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.12.2";
+  version = "2.13.0";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl libkrb5 ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     owner = "timescale";
     repo = "timescaledb";
     rev = version;
-    hash = "sha256-bZHgkcCmkheTupVLOBZ5UsgIVyy7aIJoge+ot2SmMFg=";
+    hash = "sha256-ZF3VNiTfuxCMVMRv9fqBssXuikxKbwza6ib7IuXYjgA=";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]