Skip to content

Commit

Permalink
home-assistant-custom-components.daikin_onecta: init at 4.2.2 (#367349)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Dec 22, 2024
2 parents 3871b19 + edb4af3 commit a3e92c3
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
}:

buildHomeAssistantComponent rec {
owner = "jwillemsen";
domain = "daikin_onecta";
version = "4.2.2";

src = fetchFromGitHub {
owner = "jwillemsen";
repo = "daikin_onecta";
tag = "v${version}";
hash = "sha256-kjFBy+Nq9aQSsmvzWT2Wy/BwMpyd8GdgSXIrp44cMnA=";
};

meta = {
changelog = "https://github.com/jwillemsen/daikin_onecta/tag/v${version}";
description = "Home Assistant Integration for devices supported by the Daikin Onecta App";
homepage = "https://github.com/jwillemsen/daikin_onecta";
maintainers = with lib.maintainers; [ dandellion ];
license = lib.licenses.gpl3Only;
};
}

0 comments on commit a3e92c3

Please sign in to comment.