me
/
guix
Archived
1
0
Fork 0

gnu: prixovy: Enable HTTPS inspection.

* gnu/packages/tor.scm (privoxy)[arguments]: Add "--with-openssl"
to the #:configure-flags.
[inputs]: Add openssl.
master
Tobias Geerinckx-Rice 2020-11-29 18:22:16 +01:00
parent 79613ec8fc
commit 70feedbbdb
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 2 deletions

View File

@ -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)