Commit 77d055b7 authored by Robert Schütz's avatar Robert Schütz
Browse files

home-assistant-custom-components.better_thermostat: format with nixfmt-rfc-style

parent c15b8367
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildHomeAssistantComponent }:
{
  buildHomeAssistantComponent,
  fetchFromGitHub,
  lib,
}:

buildHomeAssistantComponent rec {
  owner = "KartoffelToby";
@@ -12,13 +16,11 @@ buildHomeAssistantComponent rec {
    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.";
  meta = {
    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;
    maintainers = with lib.maintainers; [ mguentner ];
    license = lib.licenses.agpl3Only;
  };
}