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>
|
2018-07-15 22:13:28 +02:00
|
|
|
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
|
|
|
;;; Copyright © 2016, 2017 Nils Gillmann <ng0@n0.is>
|
2018-01-09 16:40:52 +01:00
|
|
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-12-12 06:59:17 +01:00
|
|
|
;;; Copyright © 2017, 2018 Eric Bavier <bavier@member.fsf.org>
|
2017-06-16 13:15:17 +02:00
|
|
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
2018-11-11 13:10:56 +01:00
|
|
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
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)
|
2017-01-29 14:00:55 +01:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
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)
|
2017-04-07 15:49:43 +02:00
|
|
|
#:use-module (gnu packages base)
|
2013-01-20 23:21:04 +01:00
|
|
|
#:use-module (gnu packages libevent)
|
2017-04-07 15:49:43 +02:00
|
|
|
#:use-module (gnu packages linux)
|
gnu: Move testing packages from python.scm to check.scm.
* gnu/packages/python.scm (python-behave-web-api, python2-behave-web-api,
python-mock, python2-mock, python-mock-2, python-nose, python2-nose,
python-nose2, python2-nose2, python-unittest2, python2-unittest2,
python-pytest, python2-pytest, python-pytest-3.0, python2-pytest-3.0,
python-pytest-cov, python2-pytest-cov, python-pytest-runner,
python2-pytest-runner, python-pytest-mock, python2-pytest-mock,
python-pytest-xdist, python2-pytest-xdist, python-scripttest,
python2-scripttest, python-testtools, python2-testtools, python-testscenarios,
python2-testscenarios, python-testresources, python2-testresources,
python-subunit, python2-subunit, python-fixtures, python2-fixtures,
python-testrepository, python2-testrepository, python-coverage,
python2-coverage, python-cov-core, python2-cov-core, python-testpath,
python2-testpath, python-testlib, python2-testlib, python-pytest-cache,
python2-pytest-cache, python-pytest-localserver, python-pytest-xprocess,
python-pytest-subtesthack, python2-pytest-subtesthack, python-hypothesis,
python2-hypothesis, python-lit, python2-lit, python-pytest-pep8,
python2-pytest-pep8, python-pytest-flakes, python2-pytest-flakes,
python2-coverage-test-runner, python-pylint, python2-pylint,
python-paramunittest, python2-python-paramunittest, python-pytest-warnings,
python2-pytest-warnings, python-pytest-capturelog, python2-pytest-capturelog,
python-pytest-catchlog, python2-pytest-catchlog, python-nosexcover,
python2-nosexcover, python-discover, python2-discover, behave, python-rednose,
python2-rednose, python-nose-randomly, python2-nose-randomly,
python-nose-timer, python2-nose-timer): Move from here...
* gnu/packages/check.scm: ...to here.
* gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/backup.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/calendar.scm,
gnu/packages/dav.scm,
gnu/packages/django.scm,
gnu/packages/freedesktop.scm,
gnu/packages/haskell.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/ldc.scm,
gnu/packages/libffi.scm,
gnu/packages/mail.scm,
gnu/packages/mpd.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/rdf.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm: Adjust accordingly.
2017-11-17 21:42:23 +01:00
|
|
|
#:use-module (gnu packages check)
|
2013-01-20 23:21:04 +01:00
|
|
|
#:use-module (gnu packages compression)
|
2013-06-07 00:02:48 +02:00
|
|
|
#:use-module (gnu packages pcre)
|
2017-10-03 14:49:37 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-06-06 06:47:34 +02:00
|
|
|
#:use-module (gnu packages python)
|
gnu: Move web packages from python to python-web.
This is in part to address <https://bugs.gnu.org/27284>.
* gnu/packages/python.scm (python-httplib2, python2-httplib2)
(python-sockjs-tornado, python2-sockjs-tornado)
(python-flask-babel, python2-flask-babel)
(python-html5lib, python2-html5lib)
(python-html5lib-0.9, python2-html5lib-0.9)
(python-html5-parser, python2-html5-parser)
(python-webencodings, python2-webencodings)
(python-openid, python2-openid, python-cssutils, python2-cssutils)
(python-cssselect, python2-cssutils)
(python-openid-cla, python2-openid-cla)
(python-openid-teams, python2-openid-teams)
(python-tornado, python2-tornado)
(python-tornado-http-auth, python-terminado, python2-terminado)
(python-webob, python2-webob, python-zope-event, python2-zope-event)
(python-zope-interface, python2-zope-interface)
(python-zope-exceptions, python2-zope-exceptions)
(python-zope-testing, python2-zope-testing)
(python-zope-testrunner, python2-zope-testrunner)
(python-zope-i18nmessageid, python2-zope-i18nmessageid)
(python-zope-schema, python2-zope-schema)
(python-zope-configuration, python2-zope-configuration)
(python-zope-proxy, python2-zope-proxy)
(python-zope-location, python2-zope-location)
(python-zope-security, python2-zope-security)
(python-zope-component, python2-zope-component)
(python-ndg-httpsclient, python2-ndg-httpsclient)
(python-websocket-client, python2-websocket-client)
(python-requests-toolbelt, python2-requests-toolbelt)
(python-rauth, python2-rauth, python-urllib3, python2-urllib3)
(awscli, python-wsgiproxy2, python2-wsgiproxy2)
(python-pastedeploy, python2-pastedeploy)
(python-webtest, python2-webtest, python-flask, python2-flask)
(python-flast-wtf, python2-flask-wtf)
(python-flask-multistatic, python2-flask-multistatic)
(python-cookies, python2-cookies)
(python-responses, python2-responses)
(python-geventhttpclient, python2-geventhttpclient)
(python-requests-oauthlib, python2-requests-oauthlib)
(python-url, python2-url, python-cachecontrol, python2-cachecontrol)
(python-betamax, python2-betamax)
(python-betamax-matchers, python2-betamax-matchers)
(python-s3transfer, python2-s3transfer)
(python-flask-restful, python-flask-basicauth)
(python-flask-sqlalchemy, python-flask-restplus)
(python-flask-restful-swagger, python-htmlmin, python2-htmlmin)
(python-flask-htmlmin, python2-flask-htmlmin)
(python-flask-login, python2-flask-login)
(python-oauth2client, python-flask-oidc)
(python-webassets, python-cssmin, python2-cssmin)
(python-elasticsearch, python2-elasticsearch)
(python-flask-script, python2-flask-script)
(python-flask-migrate, python2-flask-migrate)
(python-genshi, python2-genshi)
(python-flask-principal, python2-flask-principal)
(python-flask-httpauth, python2-flask-httpauth)
(python-uritemplate, python2-uritemplate): Move to...
* gnu/packages/python-web.scm: ... here. New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/admin.scm, gnu/packages/backup.scm,
gnu/packages/dav.scm, gnu/packages/django.scm,
gnu/packages/docker.scm, gnu/packages/ebook.scm,
gnu/packages/logging.scm, gnu/packages/mail.scm,
gnu/packages/music.scm, gnu/packages/openstack.scm,
gnu/packages/package-management.scm, gnu/packages/rdf.scm,
gnu/packages/tls.scm, gnu/packages/tor.scm,
gnu/packages/tryton.scm, gnu/packages/version-control.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-11-13 23:24:11 +01:00
|
|
|
#:use-module (gnu packages python-web)
|
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")
|
2018-11-02 19:47:54 +01:00
|
|
|
(version "0.3.4.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
|
2018-11-02 19:47:54 +01:00
|
|
|
"0jhnvnp08hsfrzgsvg5xnfxyaw3nzgg9h24cwbwnz6iby20i05qs"))))
|
2013-01-20 23:21:04 +01:00
|
|
|
(build-system gnu-build-system)
|
2017-01-25 10:31:07 +01:00
|
|
|
(arguments
|
2017-07-29 19:26:04 +02:00
|
|
|
`(#:configure-flags (list "--enable-gcc-hardening"
|
2017-01-25 10:31:07 +01:00
|
|
|
"--enable-linker-hardening")))
|
2015-06-06 06:47:34 +02:00
|
|
|
(native-inputs
|
2017-10-03 14:49:37 +02:00
|
|
|
`(("pkg-config" ,pkg-config)
|
2018-09-10 22:53:28 +02:00
|
|
|
("python" ,python-2))) ; for tests
|
2013-01-20 23:21:04 +01:00
|
|
|
(inputs
|
|
|
|
`(("zlib" ,zlib)
|
|
|
|
("openssl" ,openssl)
|
2017-06-16 13:15:17 +02:00
|
|
|
("libevent" ,libevent)
|
2017-10-03 14:49:37 +02:00
|
|
|
("libseccomp" ,libseccomp)
|
|
|
|
("xz" ,xz)
|
|
|
|
("zstd" ,zstd)))
|
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
|
2016-12-15 11:37:21 +01:00
|
|
|
applications based on the TCP protocol.
|
2016-12-17 22:13:31 +01:00
|
|
|
|
2016-12-15 11:37:21 +01:00
|
|
|
To @code{torify} applications (to take measures to ensure that an application,
|
|
|
|
which has not been designed for use with Tor such as ssh, will use only Tor for
|
|
|
|
internet connectivity, and also ensures that there are no leaks from DNS, UDP or
|
|
|
|
the application layer) you need to install @code{torsocks}.")
|
2017-01-29 14:00:55 +01:00
|
|
|
(license 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)
|
2017-04-07 15:49:43 +02:00
|
|
|
(inputs
|
|
|
|
`(("which" ,which)
|
|
|
|
("libcap" ,libcap)))
|
|
|
|
(arguments
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
|
|
|
(add-after 'build 'absolutize
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* "src/bin/torsocks"
|
|
|
|
(("getcap=`.*`")
|
|
|
|
(string-append "getcap=" (which "getcap")))
|
|
|
|
(("`which")
|
|
|
|
(string-append "`" (which "which"))))
|
|
|
|
#t)))))
|
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".
|
2017-01-29 14:00:55 +01:00
|
|
|
(license 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"))
|
2013-06-07 00:02:48 +02:00
|
|
|
#: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.")
|
2017-01-29 14:00:55 +01:00
|
|
|
(license license:gpl2+)))
|
2016-09-11 20:43:06 +02:00
|
|
|
|
|
|
|
(define-public onionshare
|
|
|
|
(package
|
|
|
|
(name "onionshare")
|
2018-12-12 06:59:17 +01:00
|
|
|
(version "1.3.1")
|
2016-09-11 20:43:06 +02:00
|
|
|
(source
|
|
|
|
(origin
|
2018-11-29 06:23:10 +01:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/micahflee/onionshare.git")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
2016-09-11 20:43:06 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-12-12 06:59:17 +01:00
|
|
|
"02zic4cxwrcfdg22dq9c2rzni3l18wynjxd38scc59s37vlw7w2r"))))
|
2016-09-11 20:43:06 +02:00
|
|
|
(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")))
|
2018-12-12 06:59:17 +01:00
|
|
|
(substitute* '("setup.py" "onionshare/common.py")
|
2016-12-13 12:11:40 +01:00
|
|
|
(("sys.prefix,") (string-append "'" out "',")))
|
|
|
|
(substitute* "setup.py"
|
|
|
|
;; for the nautilus plugin
|
|
|
|
(("/usr/share/nautilus") "share/nautilus"))
|
2018-12-12 06:59:17 +01:00
|
|
|
(substitute* "install/onionshare.desktop"
|
|
|
|
(("/usr") out))
|
|
|
|
#t)))
|
2016-09-11 20:43:06 +02:00
|
|
|
(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
|
2018-03-01 16:31:06 +01:00
|
|
|
(lambda _
|
2018-12-12 06:59:17 +01:00
|
|
|
(invoke "pytest" "test")
|
2018-03-01 16:31:06 +01:00
|
|
|
#t)))))
|
2016-09-11 20:43:06 +02:00
|
|
|
(native-inputs
|
2018-12-12 06:59:17 +01:00
|
|
|
`(("python-pytest" ,python-pytest)))
|
2016-09-11 20:43:06 +02:00
|
|
|
(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.")
|
2017-01-29 14:00:55 +01:00
|
|
|
(license (list license:gpl3+
|
|
|
|
license:bsd-3)))) ; onionshare/socks.py
|
2017-01-29 14:08:14 +01:00
|
|
|
|
|
|
|
(define-public nyx
|
2018-06-21 00:33:13 +02:00
|
|
|
(package
|
|
|
|
(name "nyx")
|
|
|
|
(version "2.0.4")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri name version))
|
2018-06-22 01:21:54 +02:00
|
|
|
(patches
|
|
|
|
(search-patches "nyx-show-header-stats-with-python3.patch"))
|
2018-06-21 00:33:13 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0pm7vfcqr02pzqz4b2f6sw5prxxmgqwr1912am42xmy2i53n7nrq"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("python-stem" ,python-stem)))
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'install 'install-man-page
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(man (string-append out "/share/man")))
|
|
|
|
(install-file "nyx.1" (string-append man "/man1"))
|
|
|
|
#t)))
|
|
|
|
(add-after 'install 'install-sample-configuration
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(doc (string-append out "/share/doc/" ,name "-" ,version)))
|
|
|
|
(install-file "web/nyxrc.sample" doc)
|
|
|
|
#t))))
|
|
|
|
;; XXX The tests seem to require more of a real terminal than the build
|
|
|
|
;; environment provides:
|
|
|
|
;; _curses.error: setupterm: could not find terminal
|
|
|
|
;; With TERM=linux, the tests try to move the cursor and still fail:
|
|
|
|
;; _curses.error: cbreak() returned ERR
|
|
|
|
#:tests? #f))
|
|
|
|
(home-page "https://nyx.torproject.org/")
|
|
|
|
(synopsis "Tor relay status monitor")
|
|
|
|
(description
|
|
|
|
"Nyx monitors the performance of relays participating in the
|
2017-01-29 14:08:14 +01:00
|
|
|
@uref{https://www.torproject.org/, Tor anonymity network}. It displays this
|
|
|
|
information visually and in real time, using a curses-based terminal interface.
|
|
|
|
This makes Nyx well-suited for remote shell connections and servers without a
|
|
|
|
graphical display. It's like @command{top} for Tor, providing detailed
|
|
|
|
statistics and status reports on:
|
|
|
|
|
|
|
|
@enumerate
|
|
|
|
@item connections (with IP address, hostname, fingerprint, and consensus data),
|
|
|
|
@item bandwidth, processor, and memory usage,
|
|
|
|
@item the relay's current configuration,
|
|
|
|
@item logged events,
|
|
|
|
@item and much more.
|
|
|
|
@end enumerate
|
|
|
|
|
|
|
|
Potential client and exit connections are scrubbed of sensitive information.")
|
2018-06-21 00:33:13 +02:00
|
|
|
(license license:gpl3+)))
|