Unverified Commit 209a1492 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

home-assistant-custom-*: make package sets extensible (#488201)

parents 6f451b24 4b985c52
Loading
Loading
Loading
Loading
+14 −8
Original line number Diff line number Diff line
@@ -8174,16 +8174,22 @@ with pkgs;

  buildHomeAssistantComponent = callPackage ../servers/home-assistant/build-custom-component { };
  home-assistant-custom-components = recurseIntoAttrs (
    lib.makeExtensible (
      self:
      lib.packagesFromDirectoryRecursive {
        inherit (home-assistant.python.pkgs) callPackage;
        directory = ../servers/home-assistant/custom-components;
      }
    )
  );
  home-assistant-custom-lovelace-modules = recurseIntoAttrs (
    lib.makeExtensible (
      self:
      lib.packagesFromDirectoryRecursive {
        inherit callPackage;
        directory = ../servers/home-assistant/custom-lovelace-modules;
      }
    )
  );

  home-assistant-cli = callPackage ../servers/home-assistant/cli.nix { };