about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tools/hash-password.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/hash-password.nix b/tools/hash-password.nix
index 9893d52178..fcf8abda78 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.
-{ pkgs, ... }:
+{ depot, pkgs, ... }:
 
 pkgs.writeShellScriptBin "hash-password" ''
-  ${pkgs.openldap}/bin/slappasswd -o module-load=pw-argon2 -h '{ARGON2}'
+  ${depot.third_party.openldap}/bin/slappasswd -o module-load=pw-argon2 -h '{ARGON2}'
 ''