about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-22 08:39:32 -0500
committerGitHub <noreply@github.com>2023-10-22 08:39:32 -0500
commitd100e11dbffba9295198228899338f7516b519b1 (patch)
treeeb8233f8862508c86923db819c008ec940b3e3db /pkgs
parentf1c65c44144a65c7ddd67b076c207ae7f98ce02a (diff)
parentd6dbcefb3008e58c4448d81c1216a0a76865830d (diff)
Merge pull request #262264 from marsam/update-timescaledb
postgresqlPackages.timescaledb: 2.12.1 -> 2.12.2
Diffstat (limited to 'pkgs')
-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 efe3c431dca02..a567db9481215 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" ]