guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5b0873aeb1c85982321a4eca08709d8f1ceca206
Author: Cayetano Santos <[email protected]>
AuthorDate: Sun Dec 21 17:45:21 2025 +0100

    gnu: xkcdpass: Modernize package.
    
    * gnu/packages/password-utils.scm (xkcdpass)[source]: Use direct #:url.
    [home-page]: Move before synopsis.
    
    Change-Id: I6ba4325818f2c6deff3b67a22b48f0cb4cdda929
---
 gnu/packages/password-utils.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 3350be8a3e..ec1f55ba7d 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -2089,12 +2089,11 @@ data inside a GPG encrypted file, which we'll call a 
coffin.")
   (package
     (name "xkcdpass")
     (version "1.20.0")
-    (home-page "https://github.com/redacted/XKCD-password-generator";)
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-              (url home-page)
+              (url "https://github.com/redacted/XKCD-password-generator";)
               (commit (string-append "xkcdpass-" version))))
        (file-name (git-file-name name version))
        (sha256
@@ -2112,6 +2111,7 @@ data inside a GPG encrypted file, which we'll call a 
coffin.")
                "xkcdpass.1"
                (string-append #$output "/share/man/man1")))))))
     (native-inputs (list python-setuptools))
+    (home-page "https://github.com/redacted/XKCD-password-generator";)
     (synopsis
      "Generate secure multiword passwords/passphrases, inspired by XKCD")
     (description

Reply via email to