diff options
Diffstat (limited to 'gnu/packages/tor.scm')
-rw-r--r-- | gnu/packages/tor.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 4a39100511..2d685fc7d5 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -47,14 +47,14 @@ (define-public tor (package (name "tor") - (version "0.3.2.9") + (version "0.3.2.10") (source (origin (method url-fetch) (uri (string-append "https://dist.torproject.org/tor-" version ".tar.gz")) (sha256 (base32 - "03qn55c969zynnx71r82iaqnadpzq0qclq0zmjhb3n4qma8pnnj3")))) + "1vnb2wkcmm8rnz0fqi3k7arl60mpycs8rjn8hvbgv56g3p1pgpv0")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list "--enable-gcc-hardening" @@ -146,7 +146,8 @@ rejects UDP traffic from the application you're using.") (lambda _ ;; Unfortunately, this is not a tarball produced by ;; "make dist". - (zero? (system* "autoreconf" "-vfi"))))) + (invoke "autoreconf" "-vfi") + #t))) #:tests? #f)) (inputs `(("w3m" ,w3m) @@ -230,7 +231,9 @@ networks.") ;; After all the patching we run the tests after installing. ;; This is also a known issue: ;; https://github.com/micahflee/onionshare/issues/284 - (lambda _ (zero? (system* "nosetests" "test"))))))) + (lambda _ + (invoke "nosetests" "test") + #t))))) (native-inputs `(("python-nose" ,python-nose))) (inputs |