Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
442 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildGoModule,
authentik,
vendorHash,
}:
buildGoModule {
pname = "authentik-proxy-outpost";
inherit (authentik) version src;
inherit vendorHash;
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";
};
}