Unverified Commit c3208dd3 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

home-assistant-custom-components.auth-header: drop

This package has been archived since now there are two working OIDC
components for Home Assistant.
parent 7f88a8b9
Loading
Loading
Loading
Loading
+0 −26
Original line number Diff line number Diff line
{
  lib,
  buildHomeAssistantComponent,
  fetchFromGitHub,
}:

buildHomeAssistantComponent rec {
  owner = "BeryJu";
  domain = "auth_header";
  version = "1.12";

  src = fetchFromGitHub {
    inherit owner;
    repo = "hass-auth-header";
    tag = "v${version}";
    hash = "sha256-BPG/G6IM95g9ip2OsPmcAebi2ZvKHUpFzV4oquOFLPM=";
  };

  meta = with lib; {
    changelog = "https://github.com/BeryJu/hass-auth-header/releases/tag/v${version}";
    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;
  };
}