home-assistant-custom-components.lovelace_gen: init at 0.1.3

This commit is contained in:
Julian Pinzer
2026-05-07 18:38:23 +02:00
committed by Sandro Jäckel
parent 7855981dce
commit 86bb433dfa
@@ -0,0 +1,29 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
jinja2,
}:
buildHomeAssistantComponent rec {
owner = "thomasloven";
domain = "lovelace_gen";
version = "0.1.3";
src = fetchFromGitHub {
owner = "thomasloven";
repo = "hass-lovelace_gen";
tag = version;
hash = "sha256-YGqvdoOs9/Etfldoee3mgDQjtveLa/LovwX/IduYyjg=";
};
dependencies = [ jinja2 ];
meta = with lib; {
changelog = "https://github.com/thomasloven/hass-lovelace_gen/releases/tag/${version}";
description = "Improve the lovelace yaml parser for Home Assistant";
homepage = "https://github.com/thomasloven/hass-lovelace_gen";
license = licenses.mit;
maintainers = with maintainers; [ jpinz ];
};
}