Skip to content

Commit

Permalink
Merge pull request #269755 from marsam/update-pg_safeupdate
Browse files Browse the repository at this point in the history
postgresql16Packages.pg_safeupdate: 1.4 -> 1.5
  • Loading branch information
marsam authored Nov 25, 2023
2 parents 7a18837 + f325e2f commit dc58473
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

stdenv.mkDerivation rec {
pname = "pg-safeupdate";
version = "1.4";
version = "1.5";

buildInputs = [ postgresql ];

src = fetchFromGitHub {
owner = "eradman";
repo = pname;
rev = version;
sha256 = "sha256-1cyvVEC9MQGMr7Tg6EUbsVBrMc8ahdFS3+CmDkmAq4Y=";
sha256 = "sha256-RRSpkWLFuif+6RCncnsb1NnjKnIIRY9KgebKkjCN5cs=";
};

installPhase = ''
Expand All @@ -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";
};
}

0 comments on commit dc58473

Please sign in to comment.