diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-03-09 14:19:19 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-09 14:46:00 +0100 |
| commit | d9e83afae1d1ff90160c0ac2e146a3c0bfe73f2b (patch) | |
| tree | 693370fe3e8c5d5dcd1fd398b2e84a3edc69720e | |
| parent | 4b8de8215d4b5bf9a2b3d937fa48736b36aec7a0 (diff) | |
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
| -rw-r--r-- | gnu/packages/password-utils.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 7d24cea3e45..6166a8782e1 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 |
