guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: pwsafe-cli: Small fixes.


From: guix-commits
Subject: branch master updated: gnu: pwsafe-cli: Small fixes.
Date: Tue, 23 Feb 2021 12:28:47 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new aac6dd5  gnu: pwsafe-cli: Small fixes.
aac6dd5 is described below

commit aac6dd5bd67133e2ae67ac55780b1147051ea8df
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Feb 23 18:27:45 2021 +0100

    gnu: pwsafe-cli: Small fixes.
    
    * gnu/packages/password-utils.scm (pwsafe-cli): Fix indentation.
    [inputs]: Re-order alphabetically.
    [description]: Use a full sentence.
---
 gnu/packages/password-utils.scm | 30 ++++++++++++++++--------------
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index d0d4132..e7bf7ed 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -275,29 +275,31 @@ platforms.")
          (file-name (git-file-name name version))))
       (build-system gnu-build-system)
       (arguments
-       `(#:tests? #f ; FIXME: skip failing test suite (requires write access
-                     ; to /tmp), patching path does not help somehow.
+       ;; FIXME: skip failing test suite (requires write access to /tmp),
+       ;; patching path does not help somehow.
+       `(#:tests? #f
          #:phases
          (modify-phases %standard-phases
-         (replace 'bootstrap
-           (lambda _
-             (invoke "aclocal")
-             (invoke "autoheader")
-             (invoke "automake" "--add-missing")
-             (invoke "autoconf")
-             #t)))))
+           (replace 'bootstrap
+             (lambda _
+               (invoke "aclocal")
+               (invoke "autoheader")
+               (invoke "automake" "--add-missing")
+               (invoke "autoconf")
+               #t)))))
       (native-inputs
        `(("autoconf" ,autoconf)
          ("automake" ,automake)))
       (inputs
-       `(("openssl" ,openssl)
-         ("libx11" ,libx11)
+       `(("libx11" ,libx11)
+         ("libxmu" ,libxmu)
          ("libxt" ,libxt)
-         ("libxmu" ,libxmu)))
+         ("openssl" ,openssl)))
       (home-page "https://github.com/nsd20463/pwsafe";)
       (synopsis "CLI password manager")
-      (description "Command line tool compatible with Counterpane's
-Passwordsafe.")
+      (description
+       "@command{pwsafe} is a command line tool compatible with
+Counterpane's Passwordsafe.")
       (license license:gpl2+))))
 
 (define-public shroud



reply via email to

[Prev in Thread] Current Thread [Next in Thread]