blob: d2e40497ce9b92aceb05fa58c7fcc315e1b77569 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ lib, buildGoModule, authentik }:
buildGoModule {
pname = "authentik-ldap-outpost";
inherit (authentik) version src;
vendorHash = "sha256-hxtyXyCfVemsjYQeo//gd68x4QO/4Vcww8i2ocsUVW8=";
CGO_ENABLED = 0;
subPackages = [ "cmd/ldap" ];
meta = authentik.meta // {
description = "The authentik ldap outpost. Needed for the external ldap API.";
homepage = "https://goauthentik.io/docs/providers/ldap/";
mainProgram = "ldap";
};
}
|