postgresqlPackages.{plperl,plpython3,plr}.withPackages: fix (#539717)

This commit is contained in:
Wolfgang Walther
2026-07-10 06:12:34 +00:00
committed by GitHub
+8 -7
View File
@@ -40,15 +40,16 @@ buildEnv (finalAttrs: {
derivationArgs = {
strictDeps = true;
nativeBuildInputs = [ makeBinaryWrapper ];
postBuild =
let
args = lib.concatMap (ext: ext.wrapperArgs or [ ]) installedExtensions;
in
''
wrapProgram "$out/bin/postgres" ${lib.concatStringsSep " " args}
'';
};
postBuild =
let
args = lib.concatMap (ext: ext.wrapperArgs or [ ]) installedExtensions;
in
''
wrapProgram "$out/bin/postgres" ${lib.concatStringsSep " " args}
'';
passthru = {
inherit installedExtensions;
inherit (postgresql)