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-10-12 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-10-12 04:20:00 +0000
commit1011a8c946136760db79adb15eca5360027ff374 (patch)
treeec72cab0c435d414236a3e50b54a1b851aa0867e /pkgs/servers/sql/postgresql/ext
parenta06100c0648b8a2c7569b16b9c38c539884c7a79 (diff)
downloadnixpkgs-1011a8c946136760db79adb15eca5360027ff374.tar
nixpkgs-1011a8c946136760db79adb15eca5360027ff374.tar.gz
nixpkgs-1011a8c946136760db79adb15eca5360027ff374.tar.bz2
nixpkgs-1011a8c946136760db79adb15eca5360027ff374.tar.lz
nixpkgs-1011a8c946136760db79adb15eca5360027ff374.tar.xz
nixpkgs-1011a8c946136760db79adb15eca5360027ff374.tar.zst
nixpkgs-1011a8c946136760db79adb15eca5360027ff374.zip
postgresqlPackages.timescaledb: 2.12.0 -> 2.12.1
Diff: https://github.com/timescale/timescaledb/compare/2.12.0...2.12.1

Changelog: https://github.com/timescale/timescaledb/blob/2.12.1/CHANGELOG.md
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext')
-rw-r--r--pkgs/servers/sql/postgresql/ext/timescaledb.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index 863e22f18b5..efe3c431dca 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.0";
+  version = "2.12.1";
 
   nativeBuildInputs = [ cmake ];
   buildInputs = [ postgresql openssl libkrb5 ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     owner = "timescale";
     repo = "timescaledb";
     rev = version;
-    sha256 = "sha256-e4Sq5VzX5YPiFzG4T8OcCqzgxaWsyVeB21GAKl0aPDk=";
+    hash = "sha256-vl9DTbmRMs+2kpcCm7hY9Xd356bo2TlMzH4zWc6r8mQ=";
   };
 
   cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" "-DREGRESS_CHECKS=OFF" "-DTAP_CHECKS=OFF" ]
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space";
     homepage = "https://www.timescale.com/";
-    changelog = "https://github.com/timescale/timescaledb/raw/${version}/CHANGELOG.md";
+    changelog = "https://github.com/timescale/timescaledb/blob/${version}/CHANGELOG.md";
     maintainers = with maintainers; [ marsam ];
     platforms = postgresql.meta.platforms;
     license = with licenses; if enableUnfree then tsl else asl20;