diff options
author | Mark H Weaver <mhw@netris.org> | 2015-06-06 00:47:34 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-06-06 00:51:10 -0400 |
commit | 8850303e769a742f407193e08388692cfcd09e67 (patch) | |
tree | f404044a06f3a451021d34a104c6f6e50eeca6a9 /gnu/packages | |
parent | 24e02c28fbf2b0efbc2fd6cdcd770037a6cff7e3 (diff) | |
download | patches-8850303e769a742f407193e08388692cfcd09e67.tar patches-8850303e769a742f407193e08388692cfcd09e67.tar.gz |
gnu: tor: Update to 0.2.6.8.
* gnu/packages/tor.scm (tor): Update to 0.2.6.8.
[native-inputs]: Add python-2.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | 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 0f19d9f2a4..d5e30e97f5 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) |