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
36 lines
771 B
Nix
36 lines
771 B
Nix
{
|
|
lib,
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
garminconnect,
|
|
tzlocal,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "cyberjunky";
|
|
domain = "garmin_connect";
|
|
version = "0.2.30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cyberjunky";
|
|
repo = "home-assistant-garmin_connect";
|
|
tag = version;
|
|
hash = "sha256-Gxz0mKVgs2o7IlhGJkz4JlKRb448IRFqK87Kn+Gebkk=";
|
|
};
|
|
|
|
dependencies = [
|
|
garminconnect
|
|
tzlocal
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Garmin Connect integration allows you to expose data from Garmin Connect to Home Assistant";
|
|
homepage = "https://github.com/cyberjunky/home-assistant-garmin_connect";
|
|
maintainers = with maintainers; [
|
|
matthiasbeyer
|
|
dmadisetti
|
|
];
|
|
license = licenses.mit;
|
|
};
|
|
}
|