Skip to content

Commit 3f8b954

Browse files
committed
chore: run nix fmt
1 parent 5701fab commit 3f8b954

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

nix/packages/postgres.nix

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,14 @@
102102
dbExtensions17
103103
else
104104
ourExtensions;
105-
extCallPackage = pkgs.lib.callPackageWith (pkgs // {
106-
inherit postgresql;
107-
switch-ext-version = extCallPackage ./switch-ext-version.nix {};
108-
overlayfs-on-package = extCallPackage ./overlayfs-on-package.nix {};
109-
});
105+
extCallPackage = pkgs.lib.callPackageWith (
106+
pkgs
107+
// {
108+
inherit postgresql;
109+
switch-ext-version = extCallPackage ./switch-ext-version.nix { };
110+
overlayfs-on-package = extCallPackage ./overlayfs-on-package.nix { };
111+
}
112+
);
110113
in
111114
map (path: extCallPackage path { }) extensionsToUse;
112115

0 commit comments

Comments
 (0)