mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
6f30d774be
Diff: https://github.com/KartoffelToby/better_thermostat/compare/refs/tags/1.5.0-beta7...1.5.0 Changelog: https://github.com/KartoffelToby/better_thermostat/releases/tag/1.5.0
25 lines
837 B
Nix
25 lines
837 B
Nix
{ lib, fetchFromGitHub, buildHomeAssistantComponent }:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "KartoffelToby";
|
|
domain = "better_thermostat";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KartoffelToby";
|
|
repo = "better_thermostat";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-noo96Uks+MHtTbwIoU5gnekp/IwMry0U18X4I1qe4LQ=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|