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:
commit
47afcfe5ae
|
@ -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 {};
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue