mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
home-assistant-custom-components.indego: init at 5.5.0
This commit is contained in:
parent
41df6e2e2b
commit
ba2a15e0c4
@ -20,6 +20,8 @@
|
||||
|
||||
homematicip_local = callPackage ./homematicip_local { };
|
||||
|
||||
indego = callPackage ./indego { };
|
||||
|
||||
local_luftdaten = callPackage ./local_luftdaten { };
|
||||
|
||||
localtuya = callPackage ./localtuya {};
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user