guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: torsocks: Wrap lines.


From: guix-commits
Subject: 02/02: gnu: torsocks: Wrap lines.
Date: Mon, 15 Aug 2022 05:22:13 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 0e53328a8a6e78687436658bb96c0da9802dfaac
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Mon Aug 15 11:21:22 2022 +0200

    gnu: torsocks: Wrap lines.
    
    * gnu/packages/tor.scm (torsocks)[source, arguments]: Wrap long lines
    and remove a trailing #t.
---
 gnu/packages/tor.scm | 30 ++++++++++++++++--------------
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm
index d71374542b..36ad5e765a 100644
--- a/gnu/packages/tor.scm
+++ b/gnu/packages/tor.scm
@@ -162,26 +162,28 @@ This package only provides a client to the Tor 
Network.")))
   (package
     (name "torsocks")
     (version "2.4.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append 
"https://gitlab.torproject.org/tpo/core/torsocks/-/archive/v";
-                                   version "/torsocks-v" version ".tar.bz2"))
-              (sha256
-               (base32
-                "1a7k3njdhp7dz603knhisna1zvxw35j3g213p6dvczv9bcjy7cjl"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://gitlab.torproject.org/tpo/core/torsocks/-/archive/v";
+             version "/torsocks-v" version ".tar.bz2"))
+       (sha256
+        (base32
+         "1a7k3njdhp7dz603knhisna1zvxw35j3g213p6dvczv9bcjy7cjl"))))
     (build-system gnu-build-system)
     (inputs
      (list libcap))
     (native-inputs
      (list autoconf automake libtool))
     (arguments
-     `(#:phases (modify-phases %standard-phases
-                  (add-after 'build 'absolutize
-                    (lambda* (#:key inputs #:allow-other-keys)
-                      (substitute* "src/bin/torsocks"
-                        (("getcap=.*")
-                         (string-append "getcap=" (which "getcap") "\n")))
-                      #t)))))
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'build 'absolutize
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* "src/bin/torsocks"
+               (("getcap=.*")
+                (string-append "getcap=" (which "getcap") "\n"))))))))
     (home-page "https://www.torproject.org/";)
     (synopsis "Transparently route an application's traffic through Tor.")
     (description



reply via email to

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