home-assistant-custom-components.browser-mod: init at 2.7.4 (#492233)

This commit is contained in:
dotlambda
2026-03-01 02:52:08 +00:00
committed by GitHub
@@ -0,0 +1,42 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
fetchNpmDeps,
nodejs,
npmHooks,
}:
buildHomeAssistantComponent rec {
owner = "thomasloven";
domain = "browser_mod";
version = "2.7.4";
src = fetchFromGitHub {
inherit owner;
repo = "hass-browser_mod";
tag = "v${version}";
hash = "sha256-UFHdoIfmN0BUBRAze3mC3mgbV00rrjmKlAiBc4FuiZA=";
};
nativeBuildInputs = [
nodejs
npmHooks.npmBuildHook
npmHooks.npmConfigHook
];
npmDeps = fetchNpmDeps {
inherit src;
hash = "sha256-gvONQGQ91XZAygXDZnu7R/BPKa9T9l3f3EE6o39t0G0=";
};
npmBuildScript = "build";
meta = {
description = "Home Assistant integration to turn your browser into a controllable entity and media player";
homepage = "https://github.com/thomasloven/hass-browser_mod";
changelog = "https://github.com/thomasloven/hass-browser_mod/releases/tag/${src.tag}";
maintainers = with lib.maintainers; [ SuperSandro2000 ];
license = lib.licenses.mit;
};
}