Files
nix-config/packages/homeassistant/ha-icloud3/default.nix
mjallen18 aed841d32e hass
2026-03-26 11:42:19 -05:00

31 lines
800 B
Nix

{
buildHomeAssistantComponent,
fetchFromGitHub,
home-assistant,
...
}:
buildHomeAssistantComponent rec {
owner = "gcobb321";
domain = "icloud3";
version = "v3.3.4.4";
src = fetchFromGitHub {
owner = owner;
repo = "icloud3";
rev = "${version}";
hash = "sha256-B63iY4OC00PGXx/3aq/rkiO0xK11hXz66KaglwmgxIk=";
};
nativeBuildInputs = with home-assistant.python.pkgs; [
fido2
srp
];
meta = {
changelog = "https://github.com/gcobb321/icloud3/releases/tag/${version}";
description = "Cloud3 is a device tracker custom component that tracks your iPhones, iPads and Apple Watches. Devices in the Family Sharing List and the HA Mobile App Integration are trackable.";
homepage = "https://github.com/gcobb321/icloud3";
maintainers = [ ];
};
}