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
36 lines
860 B
Nix
36 lines
860 B
Nix
{
|
|
lib,
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
charset-normalizer,
|
|
pycountry,
|
|
xmltodict,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "ollo69";
|
|
domain = "smartthinq_sensors";
|
|
version = "0.41.2";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit owner;
|
|
repo = "ha-smartthinq-sensors";
|
|
rev = "v${version}";
|
|
hash = "sha256-HNhW72aoYu0Vosq8o0lyxDse8jcs3kVWEzDw/5VQn9g=";
|
|
};
|
|
|
|
dependencies = [
|
|
charset-normalizer
|
|
pycountry
|
|
xmltodict
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Home Assistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface";
|
|
homepage = "https://github.com/ollo69/ha-smartthinq-sensors";
|
|
changelog = "https://github.com/ollo69/ha-smartthinq-sensors/releases/tag/v${version}";
|
|
maintainers = with maintainers; [ k900 ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|