about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2023-04-05 10:25:53 +0200
committerGitHub <noreply@github.com>2023-04-05 10:25:53 +0200
commit535f84474a9c479cc93ec25229cc192433a13fe3 (patch)
tree94d50a4a9495ff79def98f02b971bcb9166d3423
parent2d2abaa467eaa0bc0363bfe04c703d54fba1d85e (diff)
parentca6c0e3b87ebea84009a9bf8e3882e95c7ad1326 (diff)
downloadnixlib-535f84474a9c479cc93ec25229cc192433a13fe3.tar
nixlib-535f84474a9c479cc93ec25229cc192433a13fe3.tar.gz
nixlib-535f84474a9c479cc93ec25229cc192433a13fe3.tar.bz2
nixlib-535f84474a9c479cc93ec25229cc192433a13fe3.tar.lz
nixlib-535f84474a9c479cc93ec25229cc192433a13fe3.tar.xz
nixlib-535f84474a9c479cc93ec25229cc192433a13fe3.tar.zst
nixlib-535f84474a9c479cc93ec25229cc192433a13fe3.zip
Merge pull request #224785 from srhb/recurse-into-darwin
darwin: recurseIntoAttrs
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1ed01fd1e6fe..bbc9d709ada4 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;