postgresql_*: set strictDeps for withPackages/JIT (#533324)

This commit is contained in:
Maximilian Bosch
2026-06-20 11:54:34 +00:00
committed by GitHub
+11 -8
View File
@@ -679,14 +679,17 @@ let
"/share/postgresql/tsearch_data"
];
nativeBuildInputs = [ makeBinaryWrapper ];
postBuild =
let
args = lib.concatMap (ext: ext.wrapperArgs or [ ]) installedExtensions;
in
''
wrapProgram "$out/bin/postgres" ${lib.concatStringsSep " " args}
'';
derivationArgs = {
strictDeps = true;
nativeBuildInputs = [ makeBinaryWrapper ];
postBuild =
let
args = lib.concatMap (ext: ext.wrapperArgs or [ ]) installedExtensions;
in
''
wrapProgram "$out/bin/postgres" ${lib.concatStringsSep " " args}
'';
};
passthru = {
inherit installedExtensions;