Merge pull request #302639 from mweinelt/local-luftdaten

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

authored by

Martin Weinelt and committed by
GitHub
47afcfe5 ed6db4c4

+27
+2
pkgs/servers/home-assistant/custom-components/default.nix
··· 20 20 21 21 homematicip_local = callPackage ./homematicip_local { }; 22 22 23 + local_luftdaten = callPackage ./local_luftdaten { }; 24 + 23 25 localtuya = callPackage ./localtuya {}; 24 26 25 27 midea-air-appliances-lan = callPackage ./midea-air-appliances-lan {};
+25
pkgs/servers/home-assistant/custom-components/local_luftdaten/default.nix
··· 1 + { lib 2 + , buildHomeAssistantComponent 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildHomeAssistantComponent rec { 7 + owner = "lichtteil"; 8 + domain = "local_luftdaten"; 9 + version = "2.3.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "lichtteil"; 13 + repo = "local_luftdaten"; 14 + rev = version; 15 + hash = "sha256-68clZgS7Qo62srcZWD3Un9BnNSwQUBr4Z5oBMTC9m8o="; 16 + }; 17 + 18 + meta = with lib; { 19 + changelog = "https://github.com/lichtteil/local_luftdaten/releases/tag/${version}"; 20 + description = "Custom component for Home Assistant that integrates your (own) local Luftdaten sensor (air quality/particle sensor) without using the cloud"; 21 + homepage = "https://github.com/lichtteil/local_luftdaten"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ hexa ]; 24 + }; 25 + }