Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
674 B
Nix
32 lines
674 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildHomeAssistantComponent,
|
|
yoto-api,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "cdnninja";
|
|
domain = "yoto";
|
|
version = "1.24.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cdnninja";
|
|
repo = "yoto_ha";
|
|
tag = "v${version}";
|
|
hash = "sha256-z9BrZAjjtt9EC84CzDe3AzmJHQtCBLgEoWrCJpOPBK0=";
|
|
};
|
|
|
|
dependencies = [
|
|
yoto-api
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 maintainers; [ seberm ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|