Merge pull request #224785 from srhb/recurse-into-darwin

darwin: recurseIntoAttrs
This commit is contained in:
Sarah Brofeldt 2023-04-05 10:25:53 +02:00 committed by GitHub
commit 535f84474a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26248,7 +26248,7 @@ with pkgs;
# Even though this is a set of packages not single package, use `callPackage`
# not `callPackages` so the per-package callPackages don't have their
# `.override` clobbered. C.F. `llvmPackages` which does the same.
darwin = callPackage ./darwin-packages.nix { };
darwin = recurseIntoAttrs (callPackage ./darwin-packages.nix { });
defaultbrowser = callPackage ../os-specific/darwin/defaultbrowser {
inherit (darwin.apple_sdk.frameworks) Foundation;