Merge pull request #292864 from mjm/hass-auth-header

home-assistant-custom-components.auth-header: init at 1.10-unstable-2024-02-26
This commit is contained in:
Martin Weinelt 2024-03-02 22:14:35 +01:00 committed by GitHub
commit d65910a66a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildHomeAssistantComponent
, fetchFromGitHub
}:
buildHomeAssistantComponent rec {
owner = "BeryJu";
domain = "auth_header";
version = "1.10-unstable-2024-02-26";
src = fetchFromGitHub {
inherit owner;
repo = "hass-auth-header";
rev = "5923cb33b57a9d3c23513d54cc74b02ebd243409";
hash = "sha256-ZYd1EduzoljaY3OnpjsKEAwtf03435zJmZtgqzbdjjA=";
};
# build step just runs linter
dontBuild = true;
meta = with lib; {
description = "Home Assistant custom component which allows you to delegate authentication to a reverse proxy";
homepage = "https://github.com/BeryJu/hass-auth-header";
maintainers = with maintainers; [ mjm ];
license = licenses.gpl3;
};
}

View File

@ -4,6 +4,8 @@
{
adaptive_lighting = callPackage ./adaptive_lighting {};
auth-header = callPackage ./auth-header {};
emporia_vue = callPackage ./emporia_vue {};
govee-lan = callPackage ./govee-lan {};