nixpkgs/pkgs/servers/home-assistant/custom-components/better_thermostat/default.nix
2024-03-21 18:09:24 +02:00

25 lines
843 B
Nix

{ 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;
};
}