diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-18 11:56:04 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:08 +0200 |
commit | 6df36c3cee3668caeea50e3c2392dde031f395dc (patch) | |
tree | 8c208f33b7301e89c523c1d89dc3667866ec475d /gnu/packages/password-utils.scm | |
parent | bf3c3c4be4ee38d80e411cf98788879b35b842af (diff) | |
download | guix-6df36c3cee3668caeea50e3c2392dde031f395dc.tar guix-6df36c3cee3668caeea50e3c2392dde031f395dc.tar.gz |
gnu: passwdqc: Add libxcrypt dependency.
* gnu/packages/password-utils.scm (passwdqc)[inputs]: Add libxcrypt.
Change-Id: I71e7261170cc433952bcaa0a4a1bdda95cd94d65
Diffstat (limited to 'gnu/packages/password-utils.scm')
-rw-r--r-- | gnu/packages/password-utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index ebfe54dacb..8a97a51ff5 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -574,7 +574,7 @@ random passwords that pass the checks.") #:phases #~(modify-phases %standard-phases (delete 'configure)))) ;no configure script - (inputs (list linux-pam)) + (inputs (list linux-pam libxcrypt)) (home-page "https://www.openwall.com/passwdqc/") (synopsis "Password/passphrase strength checking and policy enforcement toolset") |