From 446fac0159ab1ff05a2bf2bced0d7d4b4c6ec0b1 Mon Sep 17 00:00:00 2001 From: "David E. C. Kopczynski" Date: Mon, 8 Dec 2025 12:59:40 +0100 Subject: [PATCH] home-assistant-custom-components.ingress: init at 1.2.9 --- .../custom-components/ingress/package.nix | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/servers/home-assistant/custom-components/ingress/package.nix diff --git a/pkgs/servers/home-assistant/custom-components/ingress/package.nix b/pkgs/servers/home-assistant/custom-components/ingress/package.nix new file mode 100644 index 000000000000..9c24f074b074 --- /dev/null +++ b/pkgs/servers/home-assistant/custom-components/ingress/package.nix @@ -0,0 +1,26 @@ +{ + lib, + buildHomeAssistantComponent, + fetchFromGitHub, +}: + +buildHomeAssistantComponent rec { + owner = "lovelylain"; + domain = "ingress"; + version = "1.2.9"; + + src = fetchFromGitHub { + inherit owner; + repo = "hass_ingress"; + tag = version; + hash = "sha256-jjig0Dl/vdeuN7e25CH5L/Xvc60RM3BiAt3jUw/C9q4="; + }; + + meta = { + changelog = "https://github.com/lovelylain/hass_ingress/releases/tag/${src.tag}"; + description = "Add additional ingress panels to your Home Assistant frontend"; + homepage = "https://github.com/lovelylain/hass_ingress"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ David-Kopczynski ]; + }; +}