We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92bb436 commit ca0b104Copy full SHA for ca0b104
nix/ext/pg_tle.nix
@@ -102,6 +102,9 @@ buildEnv {
102
passthru = {
103
inherit versions numberOfVersions;
104
pname = "${pname}-all";
105
+ defaultSettings = {
106
+ shared_preload_libraries = [ "pg_tle" ];
107
+ };
108
version =
109
"multi-" + lib.concatStringsSep "-" (map (v: lib.replaceStrings [ "." ] [ "-" ] v) versions);
110
};
nix/ext/tests/default.nix
@@ -222,6 +222,7 @@ builtins.listToAttrs (
222
"pg_jsonschema"
223
"pg_net"
224
"pgaudit"
225
+ "pg_tle"
226
"vector"
227
"wrappers"
228
]
nix/ext/tests/pg_tle.nix
0 commit comments