guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: tor: Enable directory protocol compression.


From: Tobias Geerinckx-Rice
Subject: 02/04: gnu: tor: Enable directory protocol compression.
Date: Thu, 5 Oct 2017 19:28:23 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 6c97f17fa1b56afd6c4b281837d1102c84b4022c
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Oct 3 14:49:37 2017 +0200

    gnu: tor: Enable directory protocol compression.
    
    * gnu/packages/tor.scm (tor)[native-inputs]: Add pkg-config.
    [inputs]: Add xz and zstd.
---
 gnu/packages/tor.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm
index 39c4ebc..352e7f1 100644
--- a/gnu/packages/tor.scm
+++ b/gnu/packages/tor.scm
@@ -35,6 +35,7 @@
   #:use-module (gnu packages linux)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages pcre)
+  #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages autotools)
@@ -57,12 +58,15 @@
      `(#:configure-flags (list "--enable-gcc-hardening"
                                "--enable-linker-hardening")))
     (native-inputs
-     `(("python" ,python-2)))  ; for tests
+     `(("pkg-config" ,pkg-config)
+       ("python" ,python-2)))  ; for tests
     (inputs
      `(("zlib" ,zlib)
        ("openssl" ,openssl)
        ("libevent" ,libevent)
-       ("libseccomp" ,libseccomp)))
+       ("libseccomp" ,libseccomp)
+       ("xz" ,xz)
+       ("zstd" ,zstd)))
     (home-page "https://www.torproject.org/";)
     (synopsis "Anonymous network router to improve privacy on the Internet")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]