blob: 04efa139efea44654d01c5f8118bcfa691b57ec7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ 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";
};
}
|