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>
|
2017-01-24 12:19:34 +01:00
|
|
|
|
;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
|
2017-01-29 14:08:14 +01:00
|
|
|
|
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-04-07 15:49:43 +02:00
|
|
|
|
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
|
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)
|
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)
|
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")
|
2017-04-27 12:13:40 +02:00
|
|
|
|
(version "0.3.0.6")
|
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
|
2017-04-27 12:13:40 +02:00
|
|
|
|
"057vq8wagppmrlg85dgbsrk1v67yqpbi9n87s8gn0mdm7kli5rd3"))))
|
2013-01-20 23:21:04 +01:00
|
|
|
|
(build-system gnu-build-system)
|
2017-01-25 10:31:07 +01:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags (list "--enable-expensive-hardening"
|
|
|
|
|
"--enable-gcc-hardening"
|
|
|
|
|
"--enable-linker-hardening")))
|
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)))
|
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"))
|
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.")
|
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")
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(version "0.9.2")
|
2016-09-11 20:43:06 +02:00
|
|
|
|
(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
|
2016-12-13 12:11:40 +01:00
|
|
|
|
"02iv7dg15da57gy3zvfchnwwpr21n1gva7mqwpwr958ni2034smk"))))
|
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")))
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(substitute* "onionshare/strings.py"
|
2016-09-11 20:43:06 +02:00
|
|
|
|
;; correct the locale directory
|
|
|
|
|
(("helpers.get_resource_path\\('locale'\\)")
|
|
|
|
|
(string-append "'" onionshare "/locale'")))
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(substitute* "onionshare/helpers.py"
|
2016-09-11 20:43:06 +02:00
|
|
|
|
;; correct the location of version.txt
|
|
|
|
|
(("get_resource_path\\('version.txt'\\)")
|
|
|
|
|
(string-append "'" onionshare "/version.txt'"))
|
|
|
|
|
(("get_resource_path\\('wordlist.txt'\\)")
|
|
|
|
|
(string-append "'" onionshare "/wordlist.txt'")))
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(substitute* "onionshare/web.py"
|
2016-09-11 20:43:06 +02:00
|
|
|
|
;; 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'")))
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(substitute* "onionshare_gui/file_selection.py"
|
|
|
|
|
;; fancy box image in the GUI
|
2016-09-11 20:43:06 +02:00
|
|
|
|
(("helpers.get_resource_path\\('images/drop_files.png'\\)")
|
|
|
|
|
(string-append "'" onionshare "/images/drop_files.png'")))
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(substitute* "onionshare_gui/server_status.py"
|
2016-09-11 20:43:06 +02:00
|
|
|
|
(("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'")))
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(substitute* "onionshare_gui/onionshare_gui.py"
|
|
|
|
|
;; for the icon on the GUI
|
2016-09-11 20:43:06 +02:00
|
|
|
|
(("helpers.get_resource_path\\('images/logo.png'\\)")
|
|
|
|
|
(string-append "'" onionshare "/images/logo.png'")))
|
2016-12-13 12:11:40 +01:00
|
|
|
|
(substitute* '("setup.py" "onionshare/helpers.py")
|
|
|
|
|
(("sys.prefix,") (string-append "'" out "',")))
|
|
|
|
|
(substitute* "setup.py"
|
|
|
|
|
;; for the nautilus plugin
|
|
|
|
|
(("/usr/share/nautilus") "share/nautilus"))
|
2016-09-11 20:43:06 +02:00
|
|
|
|
#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
|
2016-09-28 15:23:10 +02:00
|
|
|
|
(lambda _ (zero? (system* "nosetests" "test")))))))
|
2016-09-11 20:43:06 +02:00
|
|
|
|
(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.")
|
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
|
|
|
|
|
;; The last ‘arm’ relase was 5 years ago. Meanwhile, python3 support has
|
|
|
|
|
;; been added and the software was renamed to ‘nyx’.
|
|
|
|
|
(let ((commit "fea209127484d9b304b908a4711c9528b1d065bc")
|
|
|
|
|
(revision "1")) ; Guix package revision
|
|
|
|
|
(package
|
|
|
|
|
(name "nyx")
|
|
|
|
|
(version (string-append "1.9-"
|
|
|
|
|
revision "." (string-take commit 7)))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://git.torproject.org/nyx.git")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1g0l4988076xg5gs0x0nxzlg58rfx5g5agmklvyh4yp03vxncdb9"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-mock" ,python-mock)
|
|
|
|
|
("python-pep8" ,python-pep8)
|
|
|
|
|
("python-pyflakes" ,python-pyflakes)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("python-stem" ,python-stem)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags
|
|
|
|
|
(list (string-append "--man-page="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/man/man1/nyx.1")
|
|
|
|
|
(string-append "--sample-path="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/doc/nyx/nyxrc.sample"))
|
|
|
|
|
#:use-setuptools? #f ; setup.py still uses distutils
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "./run_tests.py" "--unit")))))))
|
|
|
|
|
;; A Nyx home page is ‘being worked on’. Use Arm's for now, which at
|
|
|
|
|
;; least mentions the new source repository:
|
|
|
|
|
(home-page "http://www.atagar.com/arm/")
|
|
|
|
|
(synopsis "Tor relay status monitor")
|
|
|
|
|
(description "Nyx (formerly Anonymizing Relay Monitor or \"arm\")
|
|
|
|
|
monitors the performance of relays participating in the
|
|
|
|
|
@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.")
|
|
|
|
|
(license license:gpl3+))))
|