diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-29 18:22:16 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-29 20:44:30 +0100 |
commit | 70feedbbdb202bd0366121bd766d1838b20233d7 (patch) | |
tree | 1f6112015422ae4e862418d1522a193bbf8f09ed /gnu/packages/tor.scm | |
parent | 79613ec8fc2bedc838f5ef211fbbae6e241a54a3 (diff) | |
download | guix-70feedbbdb202bd0366121bd766d1838b20233d7.tar guix-70feedbbdb202bd0366121bd766d1838b20233d7.tar.gz |
gnu: prixovy: Enable HTTPS inspection.
* gnu/packages/tor.scm (privoxy)[arguments]: Add "--with-openssl"
to the #:configure-flags.
[inputs]: Add openssl.
Diffstat (limited to 'gnu/packages/tor.scm')
-rw-r--r-- | gnu/packages/tor.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 6ab64645b6..1aa261ddd2 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -171,7 +171,8 @@ rejects UDP traffic from the application you're using.") #:configure-flags (list (string-append "--sysconfdir=" (assoc-ref %outputs "out") "/etc/privoxy") - "--localstatedir=/var") + "--localstatedir=/var" + "--with-openssl") #:tests? #f ; no test suite #:phases (modify-phases %standard-phases @@ -193,8 +194,9 @@ rejects UDP traffic from the application you're using.") (("^logfile") "#logfile"))) #t))))) (inputs - `(("w3m" ,w3m) + `(("openssl" ,openssl) ("pcre" ,pcre) + ("w3m" ,w3m) ("zlib" ,zlib))) (native-inputs `(("autoconf" ,autoconf) |