From 6df36c3cee3668caeea50e3c2392dde031f395dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Tue, 18 Jun 2024 11:56:04 +0800 Subject: [PATCH] gnu: passwdqc: Add libxcrypt dependency. * gnu/packages/password-utils.scm (passwdqc)[inputs]: Add libxcrypt. Change-Id: I71e7261170cc433952bcaa0a4a1bdda95cd94d65 --- gnu/packages/password-utils.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index ebfe54dacbc..8a97a51ff52 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")