authentik-outposts.ldap: init at 2023.10.7

This commit is contained in:
Jan van Brügge
2024-01-31 13:45:10 +00:00
parent 3d9a9b12ab
commit 8c335258bd
3 changed files with 25 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ lib, buildGoModule, authentik }:
buildGoModule {
pname = "authentik-ldap-outpost";
inherit (authentik) version src;
vendorHash = "sha256-74rSuZrO5c7mjhHh0iQlJEkOslsFrcDb1aRXXC4RsUM=";
CGO_ENABLED = 0;
subPackages = [ "cmd/ldap" ];
meta = authentik.meta // {
description = "The authentik ldap outpost. Needed for the extendal ldap API.";
homepage = "https://goauthentik.io/docs/providers/ldap/";
mainProgram = "ldap";
};
}
+5
View File
@@ -0,0 +1,5 @@
{ callPackage }:
{
ldap = callPackage ./ldap.nix { };
}
+2
View File
@@ -3363,6 +3363,8 @@ with pkgs;
authelia = callPackage ../servers/authelia { };
authentik-outposts = recurseIntoAttrs (callPackages ../by-name/au/authentik/outposts.nix { });
autoflake = with python3.pkgs; toPythonApplication autoflake;
autospotting = callPackage ../applications/misc/autospotting { };