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
39 lines
849 B
Nix
39 lines
849 B
Nix
{
|
|
lib,
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
jsonpath-ng,
|
|
paho-mqtt,
|
|
protobuf,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "tolwi";
|
|
domain = "ecoflow_cloud";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tolwi";
|
|
repo = "hassio-ecoflow-cloud";
|
|
tag = "v${version}";
|
|
hash = "sha256-CVm5+zLWN/ayhHRNFUr4PLwedwf4GJXvLOFgrh2qxAc=";
|
|
};
|
|
|
|
dependencies = [
|
|
jsonpath-ng
|
|
paho-mqtt
|
|
protobuf
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/tolwi/hassio-ecoflow-cloud/releases/tag/v${version}";
|
|
description = "Home Assistant component for EcoFlow Cloud";
|
|
homepage = "https://github.com/tolwi/hassio-ecoflow-cloud";
|
|
maintainers = with lib.maintainers; [ ananthb ];
|
|
# license = lib.licenses.asl20;
|
|
};
|
|
}
|