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
924 B
Nix
32 lines
924 B
Nix
{
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
lib,
|
|
gitUpdater,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "KartoffelToby";
|
|
domain = "better_thermostat";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KartoffelToby";
|
|
repo = "better_thermostat";
|
|
tag = version;
|
|
hash = "sha256-rE14iKAXo3hecK3bQ9MLcOtnZviwjOpYKGlIc4+uCfw=";
|
|
};
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
ignoredVersions = "(Alpha|Beta|alpha|beta).*";
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/KartoffelToby/better_thermostat/releases/tag/${version}";
|
|
description = "Smart TRV control integrates room-temp sensors, window/door sensors, weather forecasts, and ambient probes for efficient heating and calibration, enhancing energy savings and comfort";
|
|
homepage = "https://better-thermostat.org/";
|
|
maintainers = with lib.maintainers; [ mguentner ];
|
|
license = lib.licenses.agpl3Only;
|
|
};
|
|
}
|