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
38 lines
810 B
Nix
38 lines
810 B
Nix
{
|
|
lib,
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
|
|
aioairctrl,
|
|
getmac,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "kongo09";
|
|
domain = "philips_airpurifier_coap";
|
|
version = "0.34.3";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit owner;
|
|
repo = "philips-airpurifier-coap";
|
|
rev = "v${version}";
|
|
hash = "sha256-jZmFvozkmmCCeKmdOV/FKXj0V8iGP3tnAqED/PBZrrY=";
|
|
};
|
|
|
|
dependencies = [
|
|
aioairctrl
|
|
getmac
|
|
];
|
|
|
|
ignoreVersionRequirement = [
|
|
"getmac"
|
|
];
|
|
|
|
meta = {
|
|
description = "Philips AirPurifier custom component for Home Assistant";
|
|
homepage = "https://github.com/kongo09/philips-airpurifier-coap";
|
|
license = lib.licenses.unfree; # See https://github.com/kongo09/philips-airpurifier-coap/issues/209
|
|
maintainers = with lib.maintainers; [ justinas ];
|
|
};
|
|
}
|