about summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-20 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-10-20 04:20:00 +0000
commitd6dbcefb3008e58c4448d81c1216a0a76865830d (patch)
tree742e06cd3d3b5c55fae4694035794d3045d032bc /pkgs/servers/sql/postgresql
parent43397465ee668ca3175021f97a225f7f80f42f06 (diff)
downloadnixlib-d6dbcefb3008e58c4448d81c1216a0a76865830d.tar
nixlib-d6dbcefb3008e58c4448d81c1216a0a76865830d.tar.gz
nixlib-d6dbcefb3008e58c4448d81c1216a0a76865830d.tar.bz2
nixlib-d6dbcefb3008e58c4448d81c1216a0a76865830d.tar.lz
nixlib-d6dbcefb3008e58c4448d81c1216a0a76865830d.tar.xz
nixlib-d6dbcefb3008e58c4448d81c1216a0a76865830d.tar.zst
nixlib-d6dbcefb3008e58c4448d81c1216a0a76865830d.zip
postgresqlPackages.timescaledb: 2.12.1 -> 2.12.2
Diff: https://github.com/timescale/timescaledb/compare/2.12.1...2.12.2

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