21 lines
472 B
Nix
21 lines
472 B
Nix
{
|
|
buildGoModule,
|
|
authentik,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "authentik-radius-outpost";
|
|
inherit (authentik) version src;
|
|
|
|
vendorHash = "sha256-aG/VqpmHJeGyF98aS0jgwEAq1R5c8VggeJxLWS9W8HY=";
|
|
|
|
env.CGO_ENABLED = 0;
|
|
|
|
subPackages = [ "cmd/radius" ];
|
|
|
|
meta = authentik.meta // {
|
|
description = "Authentik radius outpost which is used for the external radius API";
|
|
homepage = "https://goauthentik.io/docs/providers/radius/";
|
|
mainProgram = "radius";
|
|
};
|
|
}
|