home-assistant-custom-components.indego: init at 5.5.0

This commit is contained in:
Martin Weinelt 2024-04-13 18:15:26 +02:00
parent 41df6e2e2b
commit ba2a15e0c4
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 32 additions and 0 deletions

View File

@ -20,6 +20,8 @@
homematicip_local = callPackage ./homematicip_local { };
indego = callPackage ./indego { };
local_luftdaten = callPackage ./local_luftdaten { };
localtuya = callPackage ./localtuya {};

View File

@ -0,0 +1,30 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
pyindego,
}:
buildHomeAssistantComponent rec {
owner = "jm-73";
domain = "indego";
version = "5.5.0";
src = fetchFromGitHub {
owner = "jm-73";
repo = "Indego";
rev = "refs/tags/${version}";
hash = "sha256-ur6KOqU6KAseABL0ibpGJ6109wSSZq9HWSVbMIrRSqc=";
};
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";
# https://github.com/jm-73/pyIndego/issues/125
license = licenses.unfree;
maintainers = with maintainers; [ hexa ];
};
}