2013-01-20 23:21:04 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-03-26 16:38:16 +01:00
|
|
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2015-02-27 17:53:06 +01:00
|
|
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
2016-01-24 06:21:33 +01:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2016-08-03 02:15:24 +02:00
|
|
|
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
2013-01-20 23:21:04 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages tor)
|
2016-09-18 22:27:36 +02:00
|
|
|
#:use-module ((guix licenses) #:select (bsd-3 gpl3+ gpl2+ gpl2))
|
2013-01-20 23:21:04 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2015-11-10 18:38:04 +01:00
|
|
|
#:use-module (guix git-download)
|
2013-01-20 23:21:04 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
2016-09-18 22:27:36 +02:00
|
|
|
#:use-module (guix build-system python)
|
2015-11-10 18:38:04 +01:00
|
|
|
#:use-module (gnu packages)
|
2013-01-20 23:21:04 +01:00
|
|
|
#:use-module (gnu packages libevent)
|
|
|
|
#:use-module (gnu packages compression)
|
2013-06-07 00:02:48 +02:00
|
|
|
#:use-module (gnu packages pcre)
|
2015-06-06 06:47:34 +02:00
|
|
|
#:use-module (gnu packages python)
|
2016-09-11 20:43:06 +02:00
|
|
|
#:use-module (gnu packages qt)
|
2013-06-07 00:02:48 +02:00
|
|
|
#:use-module (gnu packages autotools)
|
gnu: Move content of openssl module into tls module.
* gnu/packages/openssl.scm (openssl, perl-net-ssleay): Move to...
* gnu/packages/tls.scm: ...here.
* gnu/packages/openssl.scm: Delete file.
* gnu-system.am (GNU_SYSTEM_MODULES): Unregister deleted file.
* gnu/packages/{admin.scm, bittorrent.scm, certs.scm, ci.scm,
cyrus-sasl.scm, databases.scm, dns.scm, ebook.scm, enlightenment.scm,
gnunet.scm, libreoffice.scm, links.scm, mail.scm, messaging.scm,
networking.scm, ntp.scm, openldap.scm, package-management.scm, pdf.scm,
python.scm, qt.scm, rdesktop.scm, rdf.scm, ruby.scm, ssh.scm,
synergy.scm, tor.scm, version-control.scm, video.scm, vpn.scm,
w3m.scm, web.scm, weechat.scm, xiph.scm}: Adapt module import.
2015-07-05 18:27:24 +02:00
|
|
|
#:use-module (gnu packages tls)
|
2013-06-07 00:02:48 +02:00
|
|
|
#:use-module (gnu packages w3m))
|
2013-01-20 23:21:04 +01:00
|
|
|
|
|
|
|
(define-public tor
|
|
|
|
(package
|
|
|
|
(name "tor")
|
2016-10-17 23:25:30 +02:00
|
|
|
(version "0.2.8.9")
|
2013-01-20 23:21:04 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-09-24 21:26:30 +02:00
|
|
|
(uri (string-append "https://dist.torproject.org/tor-"
|
2013-01-20 23:21:04 +01:00
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-10-17 23:25:30 +02:00
|
|
|
"05jkvhbgyq81fcmk1xpl3yw97ljj5sg9pngl27zlmgl7p0xjfp1z"))))
|
2013-01-20 23:21:04 +01:00
|
|
|
(build-system gnu-build-system)
|
2015-06-06 06:47:34 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("python" ,python-2))) ; for tests
|
2013-01-20 23:21:04 +01:00
|
|
|
(inputs
|
|
|
|
`(("zlib" ,zlib)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("libevent" ,libevent)))
|
2013-05-28 22:22:58 +02:00
|
|
|
|
|
|
|
;; TODO: Recommend `torsocks' since `torify' needs it.
|
|
|
|
|
2016-09-24 21:26:30 +02:00
|
|
|
(home-page "https://www.torproject.org/")
|
2014-09-13 15:50:30 +02:00
|
|
|
(synopsis "Anonymous network router to improve privacy on the Internet")
|
2013-01-20 23:21:04 +01:00
|
|
|
(description
|
|
|
|
"Tor protects you by bouncing your communications around a distributed
|
|
|
|
network of relays run by volunteers all around the world: it prevents
|
|
|
|
somebody watching your Internet connection from learning what sites you
|
|
|
|
visit, and it prevents the sites you visit from learning your physical
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 06:46:59 +02:00
|
|
|
location. Tor works with many of your existing applications, including
|
2013-01-20 23:21:04 +01:00
|
|
|
web browsers, instant messaging clients, remote login, and other
|
|
|
|
applications based on the TCP protocol.")
|
|
|
|
(license bsd-3)))
|
2013-05-28 22:22:58 +02:00
|
|
|
|
|
|
|
(define-public torsocks
|
|
|
|
(package
|
|
|
|
(name "torsocks")
|
2016-10-18 20:15:55 +02:00
|
|
|
(version "2.2.0")
|
2013-05-28 22:22:58 +02:00
|
|
|
(source (origin
|
2016-10-18 20:15:55 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://people.torproject.org/~dgoulet/"
|
|
|
|
name "/" name "-" version ".tar.xz"))
|
2015-11-10 18:38:04 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-10-18 20:15:55 +02:00
|
|
|
"0byr9ga9w79qz4vp0m11sbmspad7fsal9wm67r4znzb7zb7cis19"))))
|
2013-05-28 22:22:58 +02:00
|
|
|
(build-system gnu-build-system)
|
2016-10-18 20:15:55 +02:00
|
|
|
(home-page "https://www.torproject.org/")
|
2013-05-28 22:22:58 +02:00
|
|
|
(synopsis "Use socks-friendly applications with Tor")
|
|
|
|
(description
|
|
|
|
"Torsocks allows you to use most socks-friendly applications in a safe
|
|
|
|
way with Tor. It ensures that DNS requests are handled safely and explicitly
|
|
|
|
rejects UDP traffic from the application you're using.")
|
2015-11-10 18:38:04 +01:00
|
|
|
|
|
|
|
;; All the files explicitly say "version 2 only".
|
|
|
|
(license gpl2)))
|
2013-06-07 00:02:48 +02:00
|
|
|
|
|
|
|
(define-public privoxy
|
|
|
|
(package
|
|
|
|
(name "privoxy")
|
2016-09-24 22:08:44 +02:00
|
|
|
(version "3.0.26")
|
2013-06-07 00:02:48 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/ijbswa/Sources/"
|
|
|
|
version "%20%28stable%29/privoxy-"
|
|
|
|
version "-stable-src.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-09-24 22:08:44 +02:00
|
|
|
"1n4wpxmahl8m2y3d1azxa8lrdbpaad007k458skxrpz57ss1br2p"))))
|
2013-06-07 00:02:48 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2014-06-18 17:22:29 +02:00
|
|
|
'(;; The default 'sysconfdir' is $out/etc; change that to
|
|
|
|
;; $out/etc/privoxy.
|
|
|
|
#:configure-flags (list (string-append "--sysconfdir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/etc/privoxy"))
|
2015-02-27 17:53:06 +01:00
|
|
|
#:phases (alist-cons-after
|
|
|
|
'unpack 'autoconf
|
2013-06-07 00:02:48 +02:00
|
|
|
(lambda _
|
|
|
|
;; Unfortunately, this is not a tarball produced by
|
|
|
|
;; "make dist".
|
|
|
|
(zero? (system* "autoreconf" "-vfi")))
|
|
|
|
%standard-phases)
|
|
|
|
#:tests? #f))
|
|
|
|
(inputs
|
|
|
|
`(("w3m" ,w3m)
|
|
|
|
("pcre" ,pcre)
|
|
|
|
("zlib" ,zlib)
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
("automake" ,automake)))
|
2016-09-24 22:08:44 +02:00
|
|
|
(home-page "https://www.privoxy.org")
|
2013-06-07 00:02:48 +02:00
|
|
|
(synopsis "Web proxy with advanced filtering capabilities for enhancing privacy")
|
|
|
|
(description
|
|
|
|
"Privoxy is a non-caching web proxy with advanced filtering capabilities
|
|
|
|
for enhancing privacy, modifying web page data and HTTP headers, controlling
|
|
|
|
access, and removing ads and other obnoxious Internet junk. Privoxy has a
|
|
|
|
flexible configuration and can be customized to suit individual needs and
|
|
|
|
tastes. It has application for both stand-alone systems and multi-user
|
|
|
|
networks.")
|
|
|
|
(license gpl2+)))
|
2016-09-11 20:43:06 +02:00
|
|
|
|
|
|
|
(define-public onionshare
|
|
|
|
(package
|
|
|
|
(name "onionshare")
|
|
|
|
(version "0.9")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/micahflee/onionshare/archive/v"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0pc3xbq379415s0i0y6rz02hay20zbvgra1jmg4mgrl9vbdr8zmw"))
|
|
|
|
(patches (search-patches "onionshare-fix-install-paths.patch"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'fix-install-path
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(onionshare (string-append out "/share/onionshare")))
|
|
|
|
(substitute*
|
|
|
|
"install/pyinstaller.spec"
|
|
|
|
;; inform onionshare where the 'resources' files are installed
|
|
|
|
(("../resources") onionshare))
|
|
|
|
(substitute*
|
|
|
|
"onionshare/strings.py"
|
|
|
|
;; correct the locale directory
|
|
|
|
(("helpers.get_resource_path\\('locale'\\)")
|
|
|
|
(string-append "'" onionshare "/locale'")))
|
|
|
|
(substitute*
|
|
|
|
"onionshare/helpers.py"
|
|
|
|
;; correct the location of version.txt
|
|
|
|
(("/usr") out)
|
|
|
|
(("get_resource_path\\('version.txt'\\)")
|
|
|
|
(string-append "'" onionshare "/version.txt'"))
|
|
|
|
(("get_resource_path\\('wordlist.txt'\\)")
|
|
|
|
(string-append "'" onionshare "/wordlist.txt'")))
|
|
|
|
(substitute*
|
|
|
|
"onionshare/web.py"
|
|
|
|
;; fix the location of the html files
|
|
|
|
(("helpers.get_resource_path\\('html/denied.html'\\)")
|
|
|
|
(string-append "'" onionshare "/html/denied.html'"))
|
|
|
|
(("helpers.get_resource_path\\('html/404.html'\\)")
|
|
|
|
(string-append "'" onionshare "/html/404.html'"))
|
|
|
|
(("helpers.get_resource_path\\('html/index.html'\\)")
|
|
|
|
(string-append "'" onionshare "/html/index.html'")))
|
|
|
|
(substitute*
|
|
|
|
"onionshare_gui/file_selection.py"
|
|
|
|
(("helpers.get_resource_path\\('images/drop_files.png'\\)")
|
|
|
|
(string-append "'" onionshare "/images/drop_files.png'")))
|
|
|
|
(substitute*
|
|
|
|
"onionshare_gui/server_status.py"
|
|
|
|
(("helpers.get_resource_path\\('images/server_stopped.png'\\)")
|
|
|
|
(string-append "'" onionshare "/images/server_stopped.png'"))
|
|
|
|
(("helpers.get_resource_path\\('images/server_working.png'\\)")
|
|
|
|
(string-append "'" onionshare "/images/server_working.png'"))
|
|
|
|
(("helpers.get_resource_path\\('images/server_started.png'\\)")
|
|
|
|
(string-append "'" onionshare "/images/server_started.png'")))
|
|
|
|
(substitute*
|
|
|
|
"onionshare_gui/onionshare_gui.py"
|
|
|
|
(("helpers.get_resource_path\\('images/logo.png'\\)")
|
|
|
|
(string-append "'" onionshare "/images/logo.png'")))
|
|
|
|
(substitute*
|
|
|
|
"install/onionshare.desktop"
|
|
|
|
(("/usr") out))
|
|
|
|
#t)))
|
|
|
|
(delete 'check)
|
|
|
|
(add-before 'strip 'tests
|
|
|
|
;; 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")))))
|
|
|
|
;; can't compress the egg because it expects to find all the resources
|
|
|
|
;; inside the egg as though it were a folder.
|
|
|
|
#:configure-flags '("--single-version-externally-managed" "--root=/")
|
|
|
|
))
|
|
|
|
(native-inputs
|
|
|
|
`(("python-nose" ,python-nose)))
|
|
|
|
(inputs
|
|
|
|
`(("python-flask" ,python-flask)
|
|
|
|
("python-nautilus" ,python-nautilus)
|
|
|
|
("python-sip" ,python-sip)
|
|
|
|
("python-stem" ,python-stem)
|
|
|
|
("python-pyqt" ,python-pyqt)))
|
|
|
|
(home-page "https://onionshare.org/")
|
|
|
|
(synopsis "Securely and anonymously share files")
|
|
|
|
(description "OnionShare lets you securely and anonymously share files of
|
|
|
|
any size. It works by starting a web server, making it accessible as a Tor
|
|
|
|
hidden service, and generating an unguessable URL to access and download the
|
|
|
|
files. It doesn't require setting up a server on the internet somewhere or
|
|
|
|
using a third party filesharing service. You host the file on your own computer
|
|
|
|
and use a Tor hidden service to make it temporarily accessible over the
|
|
|
|
internet. The other user just needs to use Tor Browser to download the file
|
|
|
|
from you.")
|
2016-09-18 22:27:36 +02:00
|
|
|
(license (list gpl3+
|
|
|
|
bsd-3)))) ; onionshare/socks.py
|