home-assistant-custom-components.local_luftdaten: init at 2.3.1

Custom component for Home Assistant that integrates your (own) local
Luftdaten sensor (air quality/particle sensor) without using the cloud.
This commit is contained in:
Martin Weinelt 2024-04-08 20:50:14 +02:00
parent 2f8b02e883
commit 8829980592
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 27 additions and 0 deletions

View File

@ -20,6 +20,8 @@
homematicip_local = callPackage ./homematicip_local { };
local_luftdaten = callPackage ./local_luftdaten { };
localtuya = callPackage ./localtuya {};
midea-air-appliances-lan = callPackage ./midea-air-appliances-lan {};

View File

@ -0,0 +1,25 @@
{ lib
, buildHomeAssistantComponent
, fetchFromGitHub
}:
buildHomeAssistantComponent rec {
owner = "lichtteil";
domain = "local_luftdaten";
version = "2.3.1";
src = fetchFromGitHub {
owner = "lichtteil";
repo = "local_luftdaten";
rev = version;
hash = "sha256-68clZgS7Qo62srcZWD3Un9BnNSwQUBr4Z5oBMTC9m8o=";
};
meta = with lib; {
changelog = "https://github.com/lichtteil/local_luftdaten/releases/tag/${version}";
description = "Custom component for Home Assistant that integrates your (own) local Luftdaten sensor (air quality/particle sensor) without using the cloud";
homepage = "https://github.com/lichtteil/local_luftdaten";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}