diff options
Diffstat (limited to 'tools/hash-password.nix')
-rw-r--r-- | tools/hash-password.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/hash-password.nix b/tools/hash-password.nix index fcf8abda78ea..9893d521787e 100644 --- a/tools/hash-password.nix +++ b/tools/hash-password.nix @@ -1,7 +1,7 @@ # Utility for invoking slappasswd with the correct options for # creating an ARGON2 password hash. -{ depot, pkgs, ... }: +{ pkgs, ... }: pkgs.writeShellScriptBin "hash-password" '' - ${depot.third_party.openldap}/bin/slappasswd -o module-load=pw-argon2 -h '{ARGON2}' + ${pkgs.openldap}/bin/slappasswd -o module-load=pw-argon2 -h '{ARGON2}' '' |