From ca6c0e3b87ebea84009a9bf8e3882e95c7ad1326 Mon Sep 17 00:00:00 2001 From: Sarah Brofeldt Date: Wed, 5 Apr 2023 09:37:09 +0200 Subject: [PATCH] darwin: recurseIntoAttrs I think this helps the packages in this set show up on search.nixos.org --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a20a18d9f9d2..a4daeb73737a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -26178,7 +26178,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;