Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
849 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
};
}