guix-commits
[Top][All Lists]
Advanced

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

06/06: gnu: proxychains-ng: Update to 4.13.


From: Tobias Geerinckx-Rice
Subject: 06/06: gnu: proxychains-ng: Update to 4.13.
Date: Fri, 10 Aug 2018 21:21:17 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit a0b5c99861d321e6b30e231d49c0d3718942ebd7
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sat Aug 11 03:02:20 2018 +0200

    gnu: proxychains-ng: Update to 4.13.
    
    * gnu/packages/networking.scm (proxychains-ng): Update to 4.13.
    [source]: Update download URI.  Goodbye, sweet hash.
    [arguments]: Add CC=gcc to the environment, not only to #:make-flags.
---
 gnu/packages/networking.scm | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 91cc150..15e0181 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1072,19 +1072,18 @@ libproxy only have to specify which proxy to use.")
 (define-public proxychains-ng
   (package
     (name "proxychains-ng")
-    (version "4.12")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/rofl0r/"; name 
"/releases/"
-                                  "download/v" version "/" name "-" version
-                                  ".tar.xz"))
-              (sha256
-               (base32
-                "0kiss3ih6cwayzvqi5cx4kw4vh7r2kfxlbgk56v1f1066ncm8aj8"))))
+    (version "4.13")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://ftp.barfooze.de/pub/sabotage/tarballs/";
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "0418fv8hgf43rzrxxlybg49jz2h6w8inndhb6v1184k4cwzjnl3p"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; there are no tests
-       #:make-flags '("CC=gcc")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'fix-configure-script
@@ -1095,6 +1094,10 @@ libproxy only have to specify which proxy to use.")
                (("\\*\\) break ;;" line)
                 (string-append "[A-Z]*) shift ;;\n"
                                line)))
+             #t))
+         (add-before 'configure 'set-up-environment
+           (lambda _
+             (setenv "CC" "gcc")
              #t)))))
     (synopsis "Redirect any TCP connection through a proxy or proxy chain")
     (description "Proxychains-ng is a preloader which hooks calls to sockets



reply via email to

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