about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-11-23 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-11-23 04:20:00 +0000
commit4fbb794e876264d2fa80757a909ea085a43cba73 (patch)
tree6729220d7f91ac625017be12a0bc53852e00e419 /pkgs/servers/sql
parent4909f031150c9effe9f62caea1270a9a1bfd7030 (diff)
downloadnixlib-4fbb794e876264d2fa80757a909ea085a43cba73.tar
nixlib-4fbb794e876264d2fa80757a909ea085a43cba73.tar.gz
nixlib-4fbb794e876264d2fa80757a909ea085a43cba73.tar.bz2
nixlib-4fbb794e876264d2fa80757a909ea085a43cba73.tar.lz
nixlib-4fbb794e876264d2fa80757a909ea085a43cba73.tar.xz
nixlib-4fbb794e876264d2fa80757a909ea085a43cba73.tar.zst
nixlib-4fbb794e876264d2fa80757a909ea085a43cba73.zip
postgresqlPackages.pg_auto_failover: 2.0 -> 2.1
Diff: https://github.com/citusdata/pg_auto_failover/compare/v2.0...v2.1

Changelog: https://github.com/citusdata/pg_auto_failover/blob/v2.1/CHANGELOG.md
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix b/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix
index 6af250790d76..51b7d4fd70fa 100644
--- a/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix
+++ b/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "pg_auto_failover";
-  version = "2.0";
+  version = "2.1";
 
   src = fetchFromGitHub {
     owner = "citusdata";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-CLtLOzKRB9p6+SytMvWCYo7m7s/d+clAGOa2sWi6uZ0=";
+    sha256 = "sha256-OIWykfFbVskrkPG/zSmZtZjc+W956KSfIzK7f5QOqpI=";
   };
 
   buildInputs = [ postgresql openssl zlib readline libkrb5 ]
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "PostgreSQL extension and service for automated failover and high-availability";
     homepage = "https://github.com/citusdata/pg_auto_failover";
-    changelog = "https://github.com/citusdata/pg_auto_failover/raw/v${version}/CHANGELOG.md";
+    changelog = "https://github.com/citusdata/pg_auto_failover/blob/v${version}/CHANGELOG.md";
     maintainers = [ maintainers.marsam ];
     platforms = postgresql.meta.platforms;
     license = licenses.postgresql;