authentik-outposts.radius: init at 2024.6.0

This commit is contained in:
Jan van Brügge
2024-07-06 12:51:32 +01:00
parent c719eead60
commit 22ef83d56b
2 changed files with 19 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
{ callPackage }: {
ldap = callPackage ./ldap.nix { };
radius = callPackage ./radius.nix { };
}
+18
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";
};
}