From 50432e13ae3d6f8a9967d6d2455a58e50fc5df67 Mon Sep 17 00:00:00 2001 From: Zhong Jianxin Date: Tue, 22 Oct 2024 20:33:33 +0800 Subject: [PATCH] home-assistant-custom-components.*: Add missing lib.recurseIntoAttrs Fixup commit 08eee7bd7ae2eb1278d08416740c709bd796f26c, so hydra build home-assistant-custom-components.* again. --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e98f6f318436..b952b4d085c9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24313,10 +24313,10 @@ with pkgs; home-assistant = callPackage ../servers/home-assistant { }; buildHomeAssistantComponent = callPackage ../servers/home-assistant/build-custom-component { }; - home-assistant-custom-components = lib.packagesFromDirectoryRecursive { + home-assistant-custom-components = lib.recurseIntoAttrs (lib.packagesFromDirectoryRecursive { inherit (home-assistant.python.pkgs) callPackage; directory = ../servers/home-assistant/custom-components; - }; + }); home-assistant-custom-lovelace-modules = lib.recurseIntoAttrs (callPackage ../servers/home-assistant/custom-lovelace-modules {});