about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-25 06:01:24 +0000
committerGitHub <noreply@github.com>2023-11-25 06:01:24 +0000
commitc47766d44a2b082c2c89d56a27512352dd95ef00 (patch)
tree60670e398fc284736fb8f7dc00328edfece8494e /pkgs/servers
parent1f8691c69f723d7001ad74d11f1fd1c930e0bf42 (diff)
parent8775024419226a540cde5dd76ba181ad6edca275 (diff)
downloadnixlib-c47766d44a2b082c2c89d56a27512352dd95ef00.tar
nixlib-c47766d44a2b082c2c89d56a27512352dd95ef00.tar.gz
nixlib-c47766d44a2b082c2c89d56a27512352dd95ef00.tar.bz2
nixlib-c47766d44a2b082c2c89d56a27512352dd95ef00.tar.lz
nixlib-c47766d44a2b082c2c89d56a27512352dd95ef00.tar.xz
nixlib-c47766d44a2b082c2c89d56a27512352dd95ef00.tar.zst
nixlib-c47766d44a2b082c2c89d56a27512352dd95ef00.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix b/pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix
index 06b8ce690982..4c601896b45b 100644
--- a/pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix
+++ b/pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "pg-safeupdate";
-  version = "1.4";
+  version = "1.5";
 
   buildInputs = [ postgresql ];
 
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     owner  = "eradman";
     repo   = pname;
     rev    = version;
-    sha256 = "sha256-1cyvVEC9MQGMr7Tg6EUbsVBrMc8ahdFS3+CmDkmAq4Y=";
+    sha256 = "sha256-RRSpkWLFuif+6RCncnsb1NnjKnIIRY9KgebKkjCN5cs=";
   };
 
   installPhase = ''
@@ -20,7 +20,9 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "A simple extension to PostgreSQL that requires criteria for UPDATE and DELETE";
     homepage    = "https://github.com/eradman/pg-safeupdate";
+    changelog   = "https://github.com/eradman/pg-safeupdate/raw/${src.rev}/NEWS";
     platforms   = postgresql.meta.platforms;
     license     = licenses.postgresql;
+    broken      = versionOlder postgresql.version "14";
   };
 }