1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

Merge pull request #302639 from mweinelt/local-luftdaten

home-assistant-custom-components.local_luftdaten: init at 2.3.1
This commit is contained in:
Martin Weinelt 2024-04-08 21:37:53 +02:00 committed by GitHub
commit 47afcfe5ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 ];
};
}