Skip to content

Commit 37df621

Browse files
committed
fix: strip suffix on passthru
1 parent 09192cc commit 37df621

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix/ext/pgaudit.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ buildEnv {
188188
version =
189189
"multi-" + lib.concatStringsSep "-" (map (v: lib.replaceStrings [ "." ] [ "-" ] v) versions);
190190
defaultSettings = {
191-
shared_preload_libraries = [ pname ];
191+
shared_preload_libraries = [ (lib.removeSuffix "-all" "${pname}-all") ];
192192
};
193193
};
194194
}

0 commit comments

Comments
 (0)