git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
18 lines
463 B
Nix
18 lines
463 B
Nix
{ buildGoModule, authentik }:
|
|
|
|
buildGoModule {
|
|
pname = "authentik-radius-outpost";
|
|
inherit (authentik) version src;
|
|
|
|
vendorHash = "sha256-BcL9QAc2jJqoPaQImJIFtCiu176nxmVcCLPjXjNBwqI=";
|
|
|
|
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";
|
|
};
|
|
}
|