nixpkgs/pkgs/by-name/au/authentik/ldap.nix
Robert Scott 4cf21a33f8 authentik: 2024.6.1 -> 2024.6.4
addresses CVE-2024-42490
2024-09-08 17:05:18 +01:00

19 lines
450 B
Nix

{ buildGoModule, authentik }:
buildGoModule {
pname = "authentik-ldap-outpost";
inherit (authentik) version src;
vendorHash = "sha256-BcL9QAc2jJqoPaQImJIFtCiu176nxmVcCLPjXjNBwqI=";
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";
};
}