authentik-outposts.radius: init at 2024.6.0

This commit is contained in:
Jan van Brügge 2024-05-24 22:30:08 +01:00
parent c719eead60
commit 22ef83d56b
No known key found for this signature in database
GPG Key ID: 88E0BF7B7A546481
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,4 @@
{ callPackage }: {
ldap = callPackage ./ldap.nix { };
radius = callPackage ./radius.nix { };
}

View 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";
};
}