mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 01:54:34 +00:00
Merge pull request #321779 from pinpox/init-ha-awtrix
home-assistant-custom-components.awtrix: init at unstable-2024-05-26
This commit is contained in:
commit
0f27188ebe
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildHomeAssistantComponent
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "10der";
|
||||
domain = "awtrix";
|
||||
version = "unstable-2024-05-26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit owner;
|
||||
repo = "homeassistant-custom_components-awtrix";
|
||||
rev = "329d8eec28478574b9f34778f96b5768f30be2ab";
|
||||
hash = "sha256-ucSaQWMS6ZwXHnw5Ct/STxpl1JjBRua3edrLvBAsdyw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Home-assistant integration for awtrix";
|
||||
homepage = "https://github.com/10der/homeassistant-custom_components-awtrix";
|
||||
maintainers = with maintainers; [ pinpox ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
@ -6,6 +6,8 @@
|
||||
|
||||
auth-header = callPackage ./auth-header {};
|
||||
|
||||
awtrix = callPackage ./awtrix {};
|
||||
|
||||
better_thermostat = callPackage ./better_thermostat {};
|
||||
|
||||
emporia_vue = callPackage ./emporia_vue {};
|
||||
|
Loading…
Reference in New Issue
Block a user