nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildHomeAssistantComponent,
4 fetchFromGitHub,
5}:
6
7buildHomeAssistantComponent rec {
8 owner = "BeryJu";
9 domain = "auth_header";
10 version = "1.12";
11
12 src = fetchFromGitHub {
13 inherit owner;
14 repo = "hass-auth-header";
15 tag = "v${version}";
16 hash = "sha256-BPG/G6IM95g9ip2OsPmcAebi2ZvKHUpFzV4oquOFLPM=";
17 };
18
19 meta = with lib; {
20 changelog = "https://github.com/BeryJu/hass-auth-header/releases/tag/v${version}";
21 description = "Home Assistant custom component which allows you to delegate authentication to a reverse proxy";
22 homepage = "https://github.com/BeryJu/hass-auth-header";
23 maintainers = with maintainers; [ mjm ];
24 license = licenses.gpl3;
25 };
26}