guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d9e83afae1d1ff90160c0ac2e146a3c0bfe73f2b
Author: Cayetano Santos <[email protected]>
AuthorDate: Mon Mar 9 14:19:19 2026 +0100

    gnu: passwdqc: Update to 2.1.0.
    
    * gnu/packages/password-utils.scm (passwdqc): Update to 2.1.0.
    [source]: Switch to git-fetch.
    
    Change-Id: I8491d6d635997b69698595eb6a406ee5207aa20d
---
 gnu/packages/password-utils.scm | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 7d24cea3e4..6166a8782e 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -794,14 +794,17 @@ random passwords that pass the checks.")
 (define-public passwdqc
   (package
     (name "passwdqc")
-    (version "2.0.3")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://www.openwall.com/passwdqc/passwdqc";
-                                  "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1x4c92b3i5wmxh2111lynyndalpkryvan4wybqchd7rn96yg9c2k"))))
+    (version "2.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/openwall/passwdqc/";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1717kn9jdhgga140jfscbjijxcid8zpk040l2phy3rq0hvqjgkgg"))))
     (build-system gnu-build-system)
     (arguments
      (list

Reply via email to