nixpkgs/pkgs/by-name/au/authentik/ldap.nix
2024-07-26 11:18:09 +02:00

19 lines
450 B
Nix

{ 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";
};
}