summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/ext
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-06-29 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-06-29 04:20:00 +0000
commit58ccd88dbd4de7846101322e498d4445e0f00aee (patch)
tree4545d1880ba1693876638fafa890862f32708fc1 /pkgs/servers/sql/postgresql/ext
parent53c58a239d9ab7e986f560889f13b4f4b3089267 (diff)
downloadnixpkgs-58ccd88dbd4de7846101322e498d4445e0f00aee.tar
nixpkgs-58ccd88dbd4de7846101322e498d4445e0f00aee.tar.gz
nixpkgs-58ccd88dbd4de7846101322e498d4445e0f00aee.tar.bz2
nixpkgs-58ccd88dbd4de7846101322e498d4445e0f00aee.tar.lz
nixpkgs-58ccd88dbd4de7846101322e498d4445e0f00aee.tar.xz
nixpkgs-58ccd88dbd4de7846101322e498d4445e0f00aee.tar.zst
nixpkgs-58ccd88dbd4de7846101322e498d4445e0f00aee.zip
postgresqlPackages.timescaledb: 2.11.0 -> 2.11.1
Diff: https://github.com/timescale/timescaledb/compare/2.11.0...2.11.1

Changelog: https://github.com/timescale/timescaledb/raw/2.11.1/CHANGELOG.md
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext')
-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 73d0e7bb8da..c2c28812a40 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -13,7 +13,7 @@
 
 stdenv.mkDerivation rec {
   pname = "timescaledb${lib.optionalString (!enableUnfree) "-apache"}";
-  version = "2.11.0";
+  version = "2.11.1";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl libkrb5 ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
     owner = "timescale";
     repo = "timescaledb";
     rev = version;
-    sha256 = "sha256-CACOd3z3nPlAevtiRsLxBjZcaqygliibBq5Y2+jiuOA=";
+    sha256 = "sha256-nThflLfHvcEqJo1dz8PVca0ux7KJOW66nZ3dV1yTOCM=";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]