home-assistant-custom-components.frigidaire: Init at 0.1.1 (#370486)

This commit is contained in:
Martin Weinelt
2025-01-03 15:22:28 +01:00
committed by GitHub
2 changed files with 38 additions and 0 deletions
+7
View File
@@ -16578,6 +16578,13 @@
githubId = 22592293;
name = "Kartik Gokte";
};
nullcube = {
email = "nullcub3@gmail.com";
name = "NullCube";
github = "nullcub3";
githubId = 51034487;
matrix = "@nullcube:matrix.org";
};
nullishamy = {
email = "spam@amyerskine.me";
name = "nullishamy";
@@ -0,0 +1,31 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
frigidaire,
}:
buildHomeAssistantComponent rec {
owner = "bm1549";
domain = "frigidaire";
version = "0.1.1";
src = fetchFromGitHub {
inherit owner;
repo = "home-assistant-frigidaire";
tag = version;
hash = "sha256-Jynm0e5y/mSgyd5Pyus+nIVV3XSjsm5z+oNuGIhCu9s=";
};
dependencies = [ frigidaire ];
# NOTE: The manifest.json specifies an exact version requirement for the
# frigidaire dependency
ignoreVersionRequirement = [ "frigidaire" ];
meta = {
description = "Custom component for the Frigidaire integration";
homepage = "https://github.com/bm1549/home-assistant-frigidaire";
maintainers = with lib.maintainers; [ nullcube ];
license = lib.licenses.mit;
};
}