about summary refs log tree commit diff
path: root/pkgs/servers/home-assistant/custom-components/better_thermostat/default.nix
blob: d61d1850e13b8cfc6436b5a3fc5da6cc0143e219 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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.agpl3Only;
  };
}