Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
765 B
Nix
30 lines
765 B
Nix
{
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
lib,
|
|
gitUpdater,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "jmcollin78";
|
|
domain = "versatile_thermostat";
|
|
version = "7.3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit owner;
|
|
repo = domain;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-oX1C7N1i1ssmLgYv0uL2MQm3SCNMNKvBm6xLhfN3qKk=";
|
|
};
|
|
|
|
passthru.updateScript = gitUpdater { ignoredVersions = "(Alpha|Beta|alpha|beta).*"; };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/jmcollin78/versatile_thermostat/releases/tag/${version}";
|
|
description = "Full-featured thermostat";
|
|
homepage = "https://github.com/jmcollin78/versatile_thermostat";
|
|
maintainers = with lib.maintainers; [ pwoelfel ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|