mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
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:
commit
ce4b33b13d
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
auth-header = callPackage ./auth-header {};
|
auth-header = callPackage ./auth-header {};
|
||||||
|
|
||||||
|
better_thermostat = callPackage ./better_thermostat {};
|
||||||
|
|
||||||
emporia_vue = callPackage ./emporia_vue {};
|
emporia_vue = callPackage ./emporia_vue {};
|
||||||
|
|
||||||
govee-lan = callPackage ./govee-lan {};
|
govee-lan = callPackage ./govee-lan {};
|
||||||
|
Loading…
Reference in New Issue
Block a user