From 5236c26383b20db4d8dede203c0a7e5c41d6a28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 8 May 2026 23:05:06 +0200 Subject: [PATCH] home-assistant-custom-components.pi-hole-v6: init at 1.17.0 --- .../custom-components/pi-hole-v6/package.nix | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/servers/home-assistant/custom-components/pi-hole-v6/package.nix diff --git a/pkgs/servers/home-assistant/custom-components/pi-hole-v6/package.nix b/pkgs/servers/home-assistant/custom-components/pi-hole-v6/package.nix new file mode 100644 index 000000000000..7d6bfe7c7fa9 --- /dev/null +++ b/pkgs/servers/home-assistant/custom-components/pi-hole-v6/package.nix @@ -0,0 +1,33 @@ +{ + lib, + fetchFromGitHub, + buildHomeAssistantComponent, +}: + +buildHomeAssistantComponent rec { + owner = "bastgau"; + domain = "pi_hole_v6"; + version = "1.17.0"; + + src = fetchFromGitHub { + inherit owner; + repo = "ha-pi-hole-v6"; + tag = "v${version}"; + hash = "sha256-C9QqdAFe1P5bzuMuYWCy8hQINAbc/yOIxdxp2jpM2N8="; + }; + + # has no tests + doCheck = false; + + meta = { + changelog = "https://github.com/bastgau/ha-pi-hole-v6/releases/tag/${src.tag}"; + description = "Pi-hole V6 Integration for Home Assistant"; + longDescription = '' + This custom integration restored compatibility between Home Assistant and Pi-hole, which was no longer supported by the native integration. + Today, this integration offers additional and complementary features. + ''; + homepage = "https://github.com/bastgau/ha-pi-hole-v6"; + maintainers = with lib.maintainers; [ SuperSandro2000 ]; + license = lib.licenses.mit; + }; +}