gnu: cifs-utils: Remove autoreconf phase.
[jackhill/guix/guix.git] / gnu / packages / tor.scm
CommitLineData
7f08437b 1;;; GNU Guix --- Functional package management for GNU
9355498d 2;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
722ec722 3;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
ae608622
EF
4;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
5;;; Copyright © 2016, 2017 Nils Gillmann <ng0@n0.is>
0d92d2ad 6;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
f3cf25c3 7;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
7e9e1a36 8;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
7f08437b
LC
9;;;
10;;; This file is part of GNU Guix.
11;;;
12;;; GNU Guix is free software; you can redistribute it and/or modify it
13;;; under the terms of the GNU General Public License as published by
14;;; the Free Software Foundation; either version 3 of the License, or (at
15;;; your option) any later version.
16;;;
17;;; GNU Guix is distributed in the hope that it will be useful, but
18;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
25(define-module (gnu packages tor)
71794d7b 26 #:use-module ((guix licenses) #:prefix license:)
7f08437b
LC
27 #:use-module (guix packages)
28 #:use-module (guix download)
ba583bd2 29 #:use-module (guix git-download)
7f08437b 30 #:use-module (guix build-system gnu)
c4605e4c 31 #:use-module (guix build-system python)
ba583bd2 32 #:use-module (gnu packages)
f3cf25c3 33 #:use-module (gnu packages base)
7f08437b 34 #:use-module (gnu packages libevent)
f3cf25c3 35 #:use-module (gnu packages linux)
ac257f12 36 #:use-module (gnu packages check)
7f08437b 37 #:use-module (gnu packages compression)
b2e3dd94 38 #:use-module (gnu packages pcre)
6c97f17f 39 #:use-module (gnu packages pkg-config)
8850303e 40 #:use-module (gnu packages python)
1b2f753d 41 #:use-module (gnu packages python-web)
b8ea5204 42 #:use-module (gnu packages qt)
b2e3dd94 43 #:use-module (gnu packages autotools)
cc2b77df 44 #:use-module (gnu packages tls)
b2e3dd94 45 #:use-module (gnu packages w3m))
7f08437b
LC
46
47(define-public tor
48 (package
49 (name "tor")
3995e854 50 (version "0.3.4.9")
7f08437b
LC
51 (source (origin
52 (method url-fetch)
0ab57b0d 53 (uri (string-append "https://dist.torproject.org/tor-"
7f08437b
LC
54 version ".tar.gz"))
55 (sha256
56 (base32
3995e854 57 "0jhnvnp08hsfrzgsvg5xnfxyaw3nzgg9h24cwbwnz6iby20i05qs"))))
7f08437b 58 (build-system gnu-build-system)
249eb389 59 (arguments
54727850 60 `(#:configure-flags (list "--enable-gcc-hardening"
249eb389 61 "--enable-linker-hardening")))
8850303e 62 (native-inputs
6c97f17f 63 `(("pkg-config" ,pkg-config)
4105f13b 64 ("python" ,python-2))) ; for tests
7f08437b
LC
65 (inputs
66 `(("zlib" ,zlib)
67 ("openssl" ,openssl)
7e9e1a36 68 ("libevent" ,libevent)
6c97f17f
TGR
69 ("libseccomp" ,libseccomp)
70 ("xz" ,xz)
71 ("zstd" ,zstd)))
0ab57b0d 72 (home-page "https://www.torproject.org/")
9e771e3b 73 (synopsis "Anonymous network router to improve privacy on the Internet")
7f08437b
LC
74 (description
75 "Tor protects you by bouncing your communications around a distributed
76network of relays run by volunteers all around the world: it prevents
77somebody watching your Internet connection from learning what sites you
78visit, and it prevents the sites you visit from learning your physical
35b9e423 79location. Tor works with many of your existing applications, including
7f08437b 80web browsers, instant messaging clients, remote login, and other
fc9286d0 81applications based on the TCP protocol.
55b27569 82
fc9286d0 83To @code{torify} applications (to take measures to ensure that an application,
84which has not been designed for use with Tor such as ssh, will use only Tor for
85internet connectivity, and also ensures that there are no leaks from DNS, UDP or
86the application layer) you need to install @code{torsocks}.")
71794d7b 87 (license license:bsd-3)))
4f7e152b
LC
88
89(define-public torsocks
90 (package
91 (name "torsocks")
91988aee 92 (version "2.2.0")
4f7e152b 93 (source (origin
91988aee 94 (method url-fetch)
95 (uri (string-append "https://people.torproject.org/~dgoulet/"
96 name "/" name "-" version ".tar.xz"))
ba583bd2
LC
97 (sha256
98 (base32
91988aee 99 "0byr9ga9w79qz4vp0m11sbmspad7fsal9wm67r4znzb7zb7cis19"))))
4f7e152b 100 (build-system gnu-build-system)
f3cf25c3
EB
101 (inputs
102 `(("which" ,which)
103 ("libcap" ,libcap)))
104 (arguments
105 `(#:phases (modify-phases %standard-phases
106 (add-after 'build 'absolutize
107 (lambda* (#:key inputs #:allow-other-keys)
108 (substitute* "src/bin/torsocks"
109 (("getcap=`.*`")
110 (string-append "getcap=" (which "getcap")))
111 (("`which")
112 (string-append "`" (which "which"))))
113 #t)))))
91988aee 114 (home-page "https://www.torproject.org/")
4f7e152b
LC
115 (synopsis "Use socks-friendly applications with Tor")
116 (description
117 "Torsocks allows you to use most socks-friendly applications in a safe
118way with Tor. It ensures that DNS requests are handled safely and explicitly
119rejects UDP traffic from the application you're using.")
ba583bd2
LC
120
121 ;; All the files explicitly say "version 2 only".
71794d7b 122 (license license:gpl2)))
b2e3dd94
LC
123
124(define-public privoxy
125 (package
126 (name "privoxy")
a8f3d492 127 (version "3.0.26")
b2e3dd94
LC
128 (source (origin
129 (method url-fetch)
130 (uri (string-append "mirror://sourceforge/ijbswa/Sources/"
131 version "%20%28stable%29/privoxy-"
132 version "-stable-src.tar.gz"))
133 (sha256
134 (base32
a8f3d492 135 "1n4wpxmahl8m2y3d1azxa8lrdbpaad007k458skxrpz57ss1br2p"))))
b2e3dd94
LC
136 (build-system gnu-build-system)
137 (arguments
ae5c6fca
LC
138 '(;; The default 'sysconfdir' is $out/etc; change that to
139 ;; $out/etc/privoxy.
140 #:configure-flags (list (string-append "--sysconfdir="
141 (assoc-ref %outputs "out")
142 "/etc/privoxy"))
dc1d3cde
KK
143 #:phases
144 (modify-phases %standard-phases
145 (add-after 'unpack 'autoconf
146 (lambda _
147 ;; Unfortunately, this is not a tarball produced by
148 ;; "make dist".
fbb0164a
TGR
149 (invoke "autoreconf" "-vfi")
150 #t)))
b2e3dd94
LC
151 #:tests? #f))
152 (inputs
153 `(("w3m" ,w3m)
154 ("pcre" ,pcre)
155 ("zlib" ,zlib)
156 ("autoconf" ,autoconf)
157 ("automake" ,automake)))
a8f3d492 158 (home-page "https://www.privoxy.org")
b2e3dd94
LC
159 (synopsis "Web proxy with advanced filtering capabilities for enhancing privacy")
160 (description
161 "Privoxy is a non-caching web proxy with advanced filtering capabilities
162for enhancing privacy, modifying web page data and HTTP headers, controlling
163access, and removing ads and other obnoxious Internet junk. Privoxy has a
164flexible configuration and can be customized to suit individual needs and
165tastes. It has application for both stand-alone systems and multi-user
166networks.")
71794d7b 167 (license license:gpl2+)))
b8ea5204
EF
168
169(define-public onionshare
170 (package
171 (name "onionshare")
e5a12fba 172 (version "0.9.2")
b8ea5204
EF
173 (source
174 (origin
175 (method url-fetch)
176 (uri (string-append "https://github.com/micahflee/onionshare/archive/v"
177 version ".tar.gz"))
178 (file-name (string-append name "-" version ".tar.gz"))
179 (sha256
180 (base32
e5a12fba 181 "02iv7dg15da57gy3zvfchnwwpr21n1gva7mqwpwr958ni2034smk"))))
b8ea5204
EF
182 (build-system python-build-system)
183 (arguments
184 `(#:phases
185 (modify-phases %standard-phases
186 (add-after 'unpack 'fix-install-path
187 (lambda* (#:key outputs #:allow-other-keys)
188 (let* ((out (assoc-ref outputs "out"))
189 (onionshare (string-append out "/share/onionshare")))
e5a12fba 190 (substitute* "onionshare/strings.py"
b8ea5204
EF
191 ;; correct the locale directory
192 (("helpers.get_resource_path\\('locale'\\)")
193 (string-append "'" onionshare "/locale'")))
e5a12fba 194 (substitute* "onionshare/helpers.py"
b8ea5204 195 ;; correct the location of version.txt
b8ea5204
EF
196 (("get_resource_path\\('version.txt'\\)")
197 (string-append "'" onionshare "/version.txt'"))
198 (("get_resource_path\\('wordlist.txt'\\)")
199 (string-append "'" onionshare "/wordlist.txt'")))
e5a12fba 200 (substitute* "onionshare/web.py"
b8ea5204
EF
201 ;; fix the location of the html files
202 (("helpers.get_resource_path\\('html/denied.html'\\)")
203 (string-append "'" onionshare "/html/denied.html'"))
204 (("helpers.get_resource_path\\('html/404.html'\\)")
205 (string-append "'" onionshare "/html/404.html'"))
206 (("helpers.get_resource_path\\('html/index.html'\\)")
207 (string-append "'" onionshare "/html/index.html'")))
e5a12fba
EF
208 (substitute* "onionshare_gui/file_selection.py"
209 ;; fancy box image in the GUI
b8ea5204
EF
210 (("helpers.get_resource_path\\('images/drop_files.png'\\)")
211 (string-append "'" onionshare "/images/drop_files.png'")))
e5a12fba 212 (substitute* "onionshare_gui/server_status.py"
b8ea5204
EF
213 (("helpers.get_resource_path\\('images/server_stopped.png'\\)")
214 (string-append "'" onionshare "/images/server_stopped.png'"))
215 (("helpers.get_resource_path\\('images/server_working.png'\\)")
216 (string-append "'" onionshare "/images/server_working.png'"))
217 (("helpers.get_resource_path\\('images/server_started.png'\\)")
218 (string-append "'" onionshare "/images/server_started.png'")))
e5a12fba
EF
219 (substitute* "onionshare_gui/onionshare_gui.py"
220 ;; for the icon on the GUI
b8ea5204
EF
221 (("helpers.get_resource_path\\('images/logo.png'\\)")
222 (string-append "'" onionshare "/images/logo.png'")))
e5a12fba
EF
223 (substitute* '("setup.py" "onionshare/helpers.py")
224 (("sys.prefix,") (string-append "'" out "',")))
225 (substitute* "setup.py"
226 ;; for the nautilus plugin
227 (("/usr/share/nautilus") "share/nautilus"))
b8ea5204
EF
228 #t)))
229 (delete 'check)
230 (add-before 'strip 'tests
231 ;; After all the patching we run the tests after installing.
232 ;; This is also a known issue:
233 ;; https://github.com/micahflee/onionshare/issues/284
68e7632d
TGR
234 (lambda _
235 (invoke "nosetests" "test")
236 #t)))))
b8ea5204
EF
237 (native-inputs
238 `(("python-nose" ,python-nose)))
239 (inputs
240 `(("python-flask" ,python-flask)
241 ("python-nautilus" ,python-nautilus)
242 ("python-sip" ,python-sip)
243 ("python-stem" ,python-stem)
244 ("python-pyqt" ,python-pyqt)))
245 (home-page "https://onionshare.org/")
246 (synopsis "Securely and anonymously share files")
247 (description "OnionShare lets you securely and anonymously share files of
248any size. It works by starting a web server, making it accessible as a Tor
249hidden service, and generating an unguessable URL to access and download the
250files. It doesn't require setting up a server on the internet somewhere or
251using a third party filesharing service. You host the file on your own computer
252and use a Tor hidden service to make it temporarily accessible over the
253internet. The other user just needs to use Tor Browser to download the file
254from you.")
71794d7b
TGR
255 (license (list license:gpl3+
256 license:bsd-3)))) ; onionshare/socks.py
61ac7544
TGR
257
258(define-public nyx
18ab54d4
TGR
259 (package
260 (name "nyx")
261 (version "2.0.4")
262 (source
263 (origin
264 (method url-fetch)
265 (uri (pypi-uri name version))
8edebd32
TGR
266 (patches
267 (search-patches "nyx-show-header-stats-with-python3.patch"))
18ab54d4
TGR
268 (sha256
269 (base32
270 "0pm7vfcqr02pzqz4b2f6sw5prxxmgqwr1912am42xmy2i53n7nrq"))))
271 (build-system python-build-system)
272 (inputs
273 `(("python-stem" ,python-stem)))
274 (arguments
275 `(#:phases
276 (modify-phases %standard-phases
277 (add-after 'install 'install-man-page
278 (lambda* (#:key outputs #:allow-other-keys)
279 (let* ((out (assoc-ref outputs "out"))
280 (man (string-append out "/share/man")))
281 (install-file "nyx.1" (string-append man "/man1"))
282 #t)))
283 (add-after 'install 'install-sample-configuration
284 (lambda* (#:key outputs #:allow-other-keys)
285 (let* ((out (assoc-ref outputs "out"))
286 (doc (string-append out "/share/doc/" ,name "-" ,version)))
287 (install-file "web/nyxrc.sample" doc)
288 #t))))
289 ;; XXX The tests seem to require more of a real terminal than the build
290 ;; environment provides:
291 ;; _curses.error: setupterm: could not find terminal
292 ;; With TERM=linux, the tests try to move the cursor and still fail:
293 ;; _curses.error: cbreak() returned ERR
294 #:tests? #f))
295 (home-page "https://nyx.torproject.org/")
296 (synopsis "Tor relay status monitor")
297 (description
298 "Nyx monitors the performance of relays participating in the
61ac7544
TGR
299@uref{https://www.torproject.org/, Tor anonymity network}. It displays this
300information visually and in real time, using a curses-based terminal interface.
301This makes Nyx well-suited for remote shell connections and servers without a
302graphical display. It's like @command{top} for Tor, providing detailed
303statistics and status reports on:
304
305@enumerate
306@item connections (with IP address, hostname, fingerprint, and consensus data),
307@item bandwidth, processor, and memory usage,
308@item the relay's current configuration,
309@item logged events,
310@item and much more.
311@end enumerate
312
313Potential client and exit connections are scrubbed of sensitive information.")
18ab54d4 314 (license license:gpl3+)))