home-assistant-custom-components.average: init at 2.3.4 (#341571)

This commit is contained in:
Martin Weinelt 2024-09-16 12:05:13 +02:00 committed by GitHub
commit b5faf0c782
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
}:
buildHomeAssistantComponent rec {
owner = "Limych";
domain = "average";
version = "2.3.4";
src = fetchFromGitHub {
inherit owner;
repo = "ha-average";
rev = version;
hash = "sha256-PfN2F1/ScVScXfh5jKQDZ6rK4XlqD9+YW8k4f4i3bk0=";
};
meta = with lib; {
description = "Average Sensor for Home Assistant";
homepage = "https://github.com/Limych/ha-average";
maintainers = with maintainers; [ matthiasbeyer ];
license = licenses.cc-by-nc-40;
};
}

View File

@ -10,6 +10,8 @@
awtrix = callPackage ./awtrix {};
average = callPackage ./average {};
better_thermostat = callPackage ./better_thermostat {};
dwd = callPackage ./dwd { };