home-assistant-custom-components.*: Add missing lib.recurseIntoAttrs (#350480)

This commit is contained in:
Martin Weinelt
2024-10-22 14:56:52 +02:00
committed by GitHub
+2 -2
View File
@@ -24319,10 +24319,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 {});