2024-12-10 13:50:27 +00:00
|
|
|
{
|
|
|
|
buildGoModule,
|
|
|
|
authentik,
|
2025-07-13 02:27:55 +01:00
|
|
|
vendorHash,
|
2024-12-10 13:50:27 +00:00
|
|
|
}:
|
2024-05-24 22:30:08 +01:00
|
|
|
|
|
|
|
buildGoModule {
|
|
|
|
pname = "authentik-radius-outpost";
|
|
|
|
inherit (authentik) version src;
|
2025-07-13 02:27:55 +01:00
|
|
|
inherit vendorHash;
|
2024-05-24 22:30:08 +01:00
|
|
|
|
2024-11-28 08:10:54 +08:00
|
|
|
env.CGO_ENABLED = 0;
|
2024-05-24 22:30:08 +01:00
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|