mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
19 lines
450 B
Nix
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";
|
|
};
|
|
}
|