Rename home-assistant custom component packages

This commit is contained in:
2025-01-26 22:26:59 +00:00
parent 4abfcbc852
commit 1605ba5de8
3 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1,17 @@
{
fetchFromGitHub,
buildHomeAssistantComponent,
}:
buildHomeAssistantComponent rec {
owner = "thomasloven";
domain = "browser_mod";
version = "2.3.3";
src = fetchFromGitHub {
owner = owner;
repo = "hass-browser_mod";
rev = "v${version}";
hash = "sha256-lNZq7CeNiCAIM87sSUi9Jy9WS4G7QyvPoUJ8vJSAuHs=";
};
}