diff options
Diffstat (limited to 'modules/authentik/authentik-outpost-ldap.nix')
| -rw-r--r-- | modules/authentik/authentik-outpost-ldap.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/authentik/authentik-outpost-ldap.nix b/modules/authentik/authentik-outpost-ldap.nix new file mode 100644 index 0000000..e2031cc --- /dev/null +++ b/modules/authentik/authentik-outpost-ldap.nix @@ -0,0 +1,17 @@ +{ lib, stdenv, buildGoModule, fetchFromGitHub, ... }: + +buildGoModule rec { + pname = "authentik-outpost-ldap"; + version = "2023.8.3"; + + src = fetchFromGitHub { + owner = "goauthentik"; + repo = "authentik"; + rev = "version/${version}"; + hash = "sha256-dpGvxhA5NWO8LKrGXzalV9EVn/nUIj6sMy2HdY5tjlM="; + }; + + vendorHash = "sha256-F3JzzL6Gg9H4qdmp4MbQFupccATYIUIFL05is6xzoZY="; + + subPackages = [ "cmd/ldap" ]; +} |
