diff --git a/pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix b/pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix deleted file mode 100644 index 9aa56af0c638..000000000000 --- a/pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - lib, - fetchFromGitHub, - buildHomeAssistantComponent, - yoto-api, -}: - -buildHomeAssistantComponent rec { - owner = "cdnninja"; - domain = "yoto"; - version = "3.2.1"; - - src = fetchFromGitHub { - owner = "cdnninja"; - repo = "yoto_ha"; - tag = "v${version}"; - hash = "sha256-LaDjT28m5JHIDRcIx9bVy2PNlbEbDANGgdw8fnh+BRU="; - }; - - dependencies = [ - yoto-api - ]; - - meta = { - changelog = "https://github.com/cdnninja/yoto_ha/releases/tag/${src.tag}"; - description = "Home Assistant Integration for Yoto"; - homepage = "https://github.com/cdnninja/yoto_ha"; - maintainers = with lib.maintainers; [ seberm ]; - license = lib.licenses.mit; - }; -}