Skip to content

Commit 45b0d81

Browse files
committed
fix: nixos test for pg_net
We are still using the nixos module to install postgresql with the pg_net extension. That module requires the package to define the `withJIT` and `withoutJIT` attributes. The previous implementation did not return the correct package for those attributes, which caused the test to fail.
1 parent 23a13d6 commit 45b0d81

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nix/ext/tests/pg_net.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ let
2121
inherit (postgresql)
2222
version
2323
psqlSchema
24-
withJIT
25-
withoutJIT
2624
;
2725
lib = pkg;
2826
withPackages = _: pkg;
2927
installedExtensions = [ (installedExtension majorVersion) ];
28+
withoutJIT = pkg;
3029
};
3130
nativeBuildInputs = [ pkgs.makeWrapper ];
3231
pathsToLink = [

0 commit comments

Comments
 (0)