Skip to content

Commit

Permalink
Merge pull request #302639 from mweinelt/local-luftdaten
Browse files Browse the repository at this point in the history
home-assistant-custom-components.local_luftdaten: init at 2.3.1
  • Loading branch information
mweinelt committed Apr 8, 2024
2 parents ed6db4c + 8829980 commit 47afcfe
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/servers/home-assistant/custom-components/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 47afcfe

Please sign in to comment.