civodul pushed a commit to branch master in repository guix. commit 7e9e1a36b01e5871700d96b960fba06399143144 Author: Rutger Helling <rhell...@mykolab.com> Date: Fri Jun 16 13:15:17 2017 +0200
gnu: tor: Add seccomp support. * gnu/packages/tor.scm (tor)[inputs]: Add libseccomp. Signed-off-by: Ludovic Courtès <l...@gnu.org> --- gnu/packages/tor.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 819092c..bcb5aac 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2016, 2017 ng0 <contact....@cryptolab.net> ;;; Copyright © 2017 Tobias Geerinckx-Rice <m...@tobias.gr> ;;; Copyright © 2017 Eric Bavier <bav...@member.fsf.org> +;;; Copyright © 2017 Rutger Helling <rhell...@mykolab.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -61,7 +62,8 @@ (inputs `(("zlib" ,zlib) ("openssl" ,openssl) - ("libevent" ,libevent))) + ("libevent" ,libevent) + ("libseccomp", libseccomp))) (home-page "https://www.torproject.org/") (synopsis "Anonymous network router to improve privacy on the Internet") (description