blob: 957fd3702b770316d6705c153ac665f8caae1c12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ lib, buildGoModule, authentik }:
buildGoModule {
pname = "authentik-radius-outpost";
inherit (authentik) version src;
vendorHash = "sha256-hxtyXyCfVemsjYQeo//gd68x4QO/4Vcww8i2ocsUVW8=";
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";
};
}
|