Skip to content

Commit

Permalink
home-assistant-custom-components.indego: init at 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Apr 13, 2024
1 parent 41df6e2 commit ba2a15e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/servers/home-assistant/custom-components/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

homematicip_local = callPackage ./homematicip_local { };

indego = callPackage ./indego { };

local_luftdaten = callPackage ./local_luftdaten { };

localtuya = callPackage ./localtuya {};
Expand Down
30 changes: 30 additions & 0 deletions pkgs/servers/home-assistant/custom-components/indego/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit ba2a15e

Please sign in to comment.