f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
29 lines
661 B
Nix
29 lines
661 B
Nix
{
|
|
lib,
|
|
buildHomeAssistantComponent,
|
|
fetchFromGitHub,
|
|
pyindego,
|
|
}:
|
|
|
|
buildHomeAssistantComponent rec {
|
|
owner = "jm-73";
|
|
domain = "indego";
|
|
version = "5.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jm-73";
|
|
repo = "Indego";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-9q8aHbAMIA2xKhZl/CDXWSV1ylDCEVkpL8OUlELoG0Q=";
|
|
};
|
|
|
|
dependencies = [ pyindego ];
|
|
|
|
meta = with lib; {
|
|
description = "Bosch Indego lawn mower component";
|
|
changelog = "https://github.com/jm-73/Indego/releases/tag/${version}";
|
|
homepage = "https://github.com/jm-73/Indego";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|