home-assistant-custom-components.better_thermostat: init at 1.5.0-beta7

This commit is contained in:
Maximilian Güntner 2024-03-03 15:51:16 +01:00
parent 2c8834ad9e
commit 4b8fc4abe9
No known key found for this signature in database
GPG Key ID: 90856B23CE630D77
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildHomeAssistantComponent }:
buildHomeAssistantComponent rec {
owner = "KartoffelToby";
domain = "better_thermostat";
version = "1.5.0-beta7";
src = fetchFromGitHub {
owner = "KartoffelToby";
repo = "better_thermostat";
rev = "refs/tags/${version}";
hash = "sha256-bJURpeBgoxXGR7C9MY/gmNY7OFvBxrJKz2cA61b5hNo=";
};
meta = with lib; {
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 maintainers; [ mguentner ];
license = licenses.agpl3;
};
}

View File

@ -6,6 +6,8 @@
auth-header = callPackage ./auth-header {};
better_thermostat = callPackage ./better_thermostat {};
emporia_vue = callPackage ./emporia_vue {};
govee-lan = callPackage ./govee-lan {};