Skip to content

Commit

Permalink
home-assistant-custom-components.systemair: init at 0.2.0 (#355509)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Nov 12, 2024
2 parents 077fa85 + a1fc14a commit 70e17e3
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 = "tesharp";
domain = "systemair";
version = "0.2.0";

src = fetchFromGitHub {
inherit owner;
repo = "systemair";
rev = "refs/tags/v${version}";
hash = "sha256-lzFnKPkBOt2fkVGWCj1M/skSr8V39GgDHS+0HD4ACAw=";
};

meta = with lib; {
changelog = "https://github.com/tesharp/systemair/releases/tag/v${version}";
description = "Home Assistant component for Systemair SAVE Connect 2";
homepage = "https://github.com/tesharp/systemair";
maintainers = with maintainers; [ uvnikita ];
license = licenses.mit;
};
}

0 comments on commit 70e17e3

Please sign in to comment.