authentik.outposts.proxy: init at 2024.12.1

This commit is contained in:
Jan van Brügge
2024-12-24 11:36:27 +00:00
parent 3702cc6c6b
commit 813e4811fd
2 changed files with 22 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
{ callPackage }:
{
ldap = callPackage ./ldap.nix { };
proxy = callPackage ./proxy.nix { };
radius = callPackage ./radius.nix { };
}
+21
View File
@@ -0,0 +1,21 @@
{
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";
};
}