about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-02-09 05:28:42 -0500
committerGitHub <noreply@github.com>2024-02-09 05:28:42 -0500
commit410b90f31644cc71ffc145261d76a351012aac66 (patch)
tree407d436460a7cd0fccb0a7be2dd50def470bd3ac
parent985e20cefee1c3707322b86301f4e135add316c5 (diff)
parentbdd0e091c3f0063b774496ac4dfc8f5a61e840ab (diff)
downloadnixlib-410b90f31644cc71ffc145261d76a351012aac66.tar
nixlib-410b90f31644cc71ffc145261d76a351012aac66.tar.gz
nixlib-410b90f31644cc71ffc145261d76a351012aac66.tar.bz2
nixlib-410b90f31644cc71ffc145261d76a351012aac66.tar.lz
nixlib-410b90f31644cc71ffc145261d76a351012aac66.tar.xz
nixlib-410b90f31644cc71ffc145261d76a351012aac66.tar.zst
nixlib-410b90f31644cc71ffc145261d76a351012aac66.zip
Merge pull request #287349 from marsam/update-timescaledb
postgresqlPackages.timescaledb: 2.13.1 -> 2.14.0

Closes https://github.com/NixOS/nixpkgs/pull/287377
-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" ]