bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
18 lines
450 B
Nix
18 lines
450 B
Nix
{ lib, buildGoModule, authentik }:
|
|
|
|
buildGoModule {
|
|
pname = "authentik-ldap-outpost";
|
|
inherit (authentik) version src;
|
|
|
|
vendorHash = "sha256-UIJBCTq7AJGUDIlZtJaWCovyxlMPzj2BCJQqthybEz4=";
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
subPackages = [ "cmd/ldap" ];
|
|
|
|
meta = authentik.meta // {
|
|
description = "Authentik ldap outpost. Needed for the extendal ldap API";
|
|
homepage = "https://goauthentik.io/docs/providers/ldap/";
|
|
mainProgram = "ldap";
|
|
};
|
|
}
|