home-assistant-custom-components.pi-hole-v6: init at 1.17.0 (#518228)

This commit is contained in:
Martin Weinelt
2026-05-09 12:22:55 +00:00
committed by GitHub
@@ -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;
};
}