Skip to content

Commit

Permalink
home-assistant-custom-components.yoto_ha: init at 1.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seberm committed Dec 28, 2024
1 parent 098265a commit df4a56b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
yoto-api,
}:

buildHomeAssistantComponent rec {
owner = "cdnninja";
domain = "yoto";
version = "1.22.0";

src = fetchFromGitHub {
owner = "cdnninja";
repo = "yoto_ha";
rev = "refs/tags/v${version}";
hash = "sha256-uaakUxuPxYqLnE2UK6ept91Lycvvhr0r9vZw44y1W4g=";
};

propagatedBuildInputs = [
yoto-api
];

meta = with lib; {
changelog = "https://github.com/cdnninja/yoto_ha/releases/tag/v${version}";
description = "Home Assistant Integration for Yoto.";
homepage = "https://github.com/cdnninja/yoto_ha";
maintainers = with maintainers; [ seberm ];
license = licenses.mit;
};
}

0 comments on commit df4a56b

Please sign in to comment.