Unverified Commit f11b5ff8 authored by Maximilian Bosch's avatar Maximilian Bosch Committed by GitHub
Browse files

Merge: pg-dump-anon: use latest postgresql available (#354526)

parents 172cb3ef 0418996c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, fetchFromGitLab, buildGoModule, nixosTests, postgresql, makeWrapper }:
{ lib, fetchFromGitLab, buildGoModule, nixosTests, postgresql_17, makeWrapper }:

buildGoModule rec {
  pname = "pg-dump-anon";
@@ -19,7 +19,7 @@ buildGoModule rec {
  nativeBuildInputs = [ makeWrapper ];
  postInstall = ''
    wrapProgram $out/bin/pg_dump_anon \
      --prefix PATH : ${lib.makeBinPath [ postgresql ]}
      --prefix PATH : ${lib.makeBinPath [ postgresql_17 ]}
  '';

  meta = with lib; {