postgresql: refactor to move packages.nix to ext/default.nix (1/2)

This commit is split up into two commits to allow git to detect renames,
make rebasing easier and allow a working entry in .git-blame-ignore-revs.

To allow bisecting we allow evaluation on every commit by moving the extensions
into ext/ext/ first and back to ext/ with the next commit.
This commit is contained in:
Wolfgang Walther 2024-03-10 16:28:01 +01:00
parent 01463448be
commit 9ef7195e08
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1
53 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ let
};
newSelf = self // scope;
newSuper = { callPackage = newScope (scope // this.pkgs); };
in import ./packages.nix newSelf newSuper;
in import ./ext newSelf newSuper;
withPackages = postgresqlWithPackages {
inherit makeWrapper buildEnv;