guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 9152fe47f306f94694057f895466e2282dc19841
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Sep 16 16:21:54 2025 +0200

    gnu: assword: Improve style.
    
    * gnu/packages/password-utils.scm (assword)[arguments]: Use
    G-Expressions.
    
    Change-Id: I4f0f1ea8cd9a088c1557d08db0d54d934bc9122f
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/password-utils.scm | 70 ++++++++++++++++++++---------------------
 1 file changed, 34 insertions(+), 36 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index ce3403560f..ff494b05c0 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -803,48 +803,46 @@ command-line programs (@command{pwqcheck}, 
@command{pwqfilter}, and
   (package
     (name "assword")
     (version "0.11")
-    (source (origin
-              (method url-fetch)
-              (uri (list
-                    (string-append
-                     "http://http.debian.net/debian/pool/main/a/assword/";
-                     "assword_" version ".orig.tar.gz")))
-              (sha256
-               (base32
-                "03gkb6kvsghznbcw5l7nmrc6mn3ixkjd5jcs96ni4zs9l47jf7yp"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (list
+             (string-append
+              "http://http.debian.net/debian/pool/main/a/assword/";
+              "assword_" version ".orig.tar.gz")))
+       (sha256
+        (base32
+         "03gkb6kvsghznbcw5l7nmrc6mn3ixkjd5jcs96ni4zs9l47jf7yp"))))
     (arguments
-     `(;; irritatingly, tests do run but not there are two problems:
-       ;;  - "import gtk" fails for unknown reasons here despite it the
-       ;;    program working (indeed, I've found I have to do a logout and log
-       ;;    back in in after an install order for some mumbo jumbo environment
-       ;;    variable mess to work with pygtk and assword... what's up with
-       ;;    that?)
-       ;;  - even when the tests fail, they don't return a nonzero status,
-       ;;    so I'm not sure how to programmatically get that information
-       #:tests? #f
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'install 'wrap-assword
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let ((prog            (string-append
-                                     (assoc-ref outputs "out")
-                                     "/bin/assword"))
-                   (gi-typelib-path (getenv "GI_TYPELIB_PATH")))
-               (wrap-program prog
-                 `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))))
-         (add-after 'install 'manpage
-           (lambda* (#:key outputs #:allow-other-keys)
-             (invoke "make" "assword.1")
-             (install-file
-              "assword.1"
-              (string-append (assoc-ref outputs "out") "/share/man/man1")))))))
+     (list
+      ;; irritatingly, tests do run but not there are two problems:
+      ;;  - "import gtk" fails for unknown reasons here despite it the
+      ;;    program working (indeed, I've found I have to do a logout and log
+      ;;    back in in after an install order for some mumbo jumbo environment
+      ;;    variable mess to work with pygtk and assword... what's up with
+      ;;    that?)
+      ;;  - even when the tests fail, they don't return a nonzero status,
+      ;;    so I'm not sure how to programmatically get that information
+      #:tests? #f
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'install 'wrap-assword
+            (lambda _
+              (let ((gi-typelib-path (getenv "GI_TYPELIB_PATH")))
+                (wrap-program (string-append #$output "/bin/assword")
+                  `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))))
+          (add-after 'install 'manpage
+            (lambda _
+              (invoke "make" "assword.1")
+              (install-file "assword.1"
+                            (string-append #$output "/share/man/man1")))))))
     (build-system python-build-system)
-    (native-inputs
-     (list txt2man))
     (inputs
      (list bash-minimal gtk+ python-xdo python-gpg python-pygobject))
     (propagated-inputs
      (list xclip))
+    (native-inputs
+     (list txt2man))
     (home-page "https://finestructure.net/assword/";)
     (synopsis "Password manager")
     (description "assword is a simple password manager using GPG-wrapped

Reply via email to