mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: tor: Update to 0.4.3.5.
* gnu/packages/tor.scm (tor): Update to 0.4.3.5. [arguments]: Enable compression features that aren't auto-detected. [native-inputs]: Use the default Python (3). [inputs]: Order alphabetically.
This commit is contained in:
parent
f7237a2e39
commit
28740402b2
1 changed files with 10 additions and 6 deletions
|
@ -51,24 +51,28 @@ (define-module (gnu packages tor)
|
||||||
(define-public tor
|
(define-public tor
|
||||||
(package
|
(package
|
||||||
(name "tor")
|
(name "tor")
|
||||||
(version "0.4.2.7")
|
(version "0.4.3.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://dist.torproject.org/tor-"
|
(uri (string-append "https://dist.torproject.org/tor-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0v82ngwwmmcb7i9563bgsmrjy6xp83xyhqhaljygd0pkvlsxi886"))))
|
"0s6qspi102drn1nk3gfxs51x992xarc44gkfsi8y3l48wr50wsk1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags
|
||||||
|
(list "--enable-lzma"
|
||||||
|
"--enable-zstd")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("python" ,python-2))) ; for tests
|
("python" ,python))) ; for tests
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)
|
`(("libevent" ,libevent)
|
||||||
("openssl" ,openssl)
|
|
||||||
("libevent" ,libevent)
|
|
||||||
("libseccomp" ,libseccomp)
|
("libseccomp" ,libseccomp)
|
||||||
|
("openssl" ,openssl)
|
||||||
("xz" ,xz)
|
("xz" ,xz)
|
||||||
|
("zlib" ,zlib)
|
||||||
("zstd" ,zstd "lib")))
|
("zstd" ,zstd "lib")))
|
||||||
(home-page "https://www.torproject.org/")
|
(home-page "https://www.torproject.org/")
|
||||||
(synopsis "Anonymous network router to improve privacy on the Internet")
|
(synopsis "Anonymous network router to improve privacy on the Internet")
|
||||||
|
|
Loading…
Reference in a new issue