guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: wgetpaste: Remove trailing #t from phases.


From: guix-commits
Subject: 02/06: gnu: wgetpaste: Remove trailing #t from phases.
Date: Sun, 29 May 2022 09:33:59 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 50970a28b768c98ed45ed0201e201f5da8d993e4
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 29 16:25:35 2022 +0300

    gnu: wgetpaste: Remove trailing #t from phases.
    
    * gnu/packages/wget.scm (wgetpaste)[arguments]: Remove trailing #t from
    phases.
---
 gnu/packages/wget.scm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm
index 95baed25a7..a2131785a7 100644
--- a/gnu/packages/wget.scm
+++ b/gnu/packages/wget.scm
@@ -100,16 +100,14 @@ in downloaded documents to relative links.")
              (substitute* "wgetpaste"
                ;; dpaste blocks Tor users.  Use a better default.
                (("DEFAULT_SERVICE:-dpaste")
-                "DEFAULT_SERVICE-bpaste"))
-             #t))
+                "DEFAULT_SERVICE-bpaste"))))
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))
                     (bin (string-append out "/bin"))
                     (zsh (string-append out "/share/zsh/site-functions")))
                (install-file "wgetpaste" bin)
-               (install-file "_wgetpaste" zsh)
-               #t)))
+               (install-file "_wgetpaste" zsh))))
          (add-after 'install 'wrap-program
            ;; /bin/wgetpaste prides itself on relying only on the following
            ;; inputs, and doesn't need to execute arbitrary commands, so
@@ -121,8 +119,7 @@ in downloaded documents to relative links.")
                    ,(delete-duplicates
                      (map (lambda (command) (dirname (which command)))
                           (list "bash" "mktemp" "sed" "sort" "tee" "tr"
-                                "wget" "xclip")))))
-               #t))))
+                                "wget" "xclip")))))))))
        #:tests? #f))                    ; no test target
     (inputs
      (list bash-minimal wget xclip))



reply via email to

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