Merge pull request #293043 from mguentner/init_home_assistant_better_thermostat_1_5b7

home-assistant-custom-components.better_thermostat: init at 1.5.0-beta7
This commit is contained in:
Martin Weinelt 2024-03-05 20:56:38 +01:00 committed by GitHub
commit ce4b33b13d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 {};