Unverified Commit 813e4811 authored by Jan van Brügge's avatar Jan van Brügge
Browse files

authentik.outposts.proxy: init at 2024.12.1

parent 3702cc6c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
{ callPackage }:
{
  ldap = callPackage ./ldap.nix { };
  proxy = callPackage ./proxy.nix { };
  radius = callPackage ./radius.nix { };
}
+21 −0
Original line number Diff line number Diff line
{
  buildGoModule,
  authentik,
}:

buildGoModule {
  pname = "authentik-proxy-outpost";
  inherit (authentik) version src;

  vendorHash = "sha256-FyRTPs2xfostV2x03IjrxEYBSrsZwnuPn+oHyQq1Kq0=";

  env.CGO_ENABLED = 0;

  subPackages = [ "cmd/proxy" ];

  meta = authentik.meta // {
    description = "Authentik proxy outpost which is used for HTTP reverse proxy authentication";
    homepage = "https://goauthentik.io/docs/providers/proxy/";
    mainProgram = "proxy";
  };
}