[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: tor: Update to 0.2.6.8.
From: |
Mark H. Weaver |
Subject: |
01/01: gnu: tor: Update to 0.2.6.8. |
Date: |
Sat, 06 Jun 2015 04:51:27 +0000 |
mhw pushed a commit to branch master
in repository guix.
commit 8850303e769a742f407193e08388692cfcd09e67
Author: Mark H Weaver <address@hidden>
Date: Sat Jun 6 00:47:34 2015 -0400
gnu: tor: Update to 0.2.6.8.
* gnu/packages/tor.scm (tor): Update to 0.2.6.8.
[native-inputs]: Add python-2.
---
gnu/packages/tor.scm | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm
index 0f19d9f..d5e30e9 100644
--- a/gnu/packages/tor.scm
+++ b/gnu/packages/tor.scm
@@ -26,21 +26,24 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages openssl)
#:use-module (gnu packages pcre)
+ #:use-module (gnu packages python)
#:use-module (gnu packages autotools)
#:use-module (gnu packages w3m))
(define-public tor
(package
(name "tor")
- (version "0.2.5.12")
+ (version "0.2.6.8")
(source (origin
(method url-fetch)
(uri (string-append "https://www.torproject.org/dist/tor-"
version ".tar.gz"))
(sha256
(base32
- "0j9byw3i2b7ji88vsqwmsxxg2nlxwkk45k5qbc1y7hdlzvzxl3sm"))))
+ "0xlsc2pa7i8hm8dyilln6p4rb0pig62b9c31yp1m0hj5jqw3d2xq"))))
(build-system gnu-build-system)
+ (native-inputs
+ `(("python" ,python-2))) ; for tests
(inputs
`(("zlib" ,zlib)
("openssl" ,openssl)