authentik-outposts.radius: init at 2024.6.0
This commit is contained in:
parent
c719eead60
commit
22ef83d56b
@ -1,3 +1,4 @@
|
||||
{ callPackage }: {
|
||||
ldap = callPackage ./ldap.nix { };
|
||||
radius = callPackage ./radius.nix { };
|
||||
}
|
||||
|
18
pkgs/by-name/au/authentik/radius.nix
Normal file
18
pkgs/by-name/au/authentik/radius.nix
Normal file
@ -0,0 +1,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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user