Unverified Commit 8c335258 authored by Jan van Brügge's avatar Jan van Brügge
Browse files

authentik-outposts.ldap: init at 2023.10.7

parent 3d9a9b12
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
{ callPackage }:

{
  ldap = callPackage ./ldap.nix { };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };