mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: prixovy: Enable HTTPS inspection.
* gnu/packages/tor.scm (privoxy)[arguments]: Add "--with-openssl" to the #:configure-flags. [inputs]: Add openssl.
This commit is contained in:
parent
79613ec8fc
commit
70feedbbdb
1 changed files with 4 additions and 2 deletions
|
@ -171,7 +171,8 @@ (define-public privoxy
|
|||
#: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 @@ (define-public privoxy
|
|||
(("^logfile") "#logfile")))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("w3m" ,w3m)
|
||||
`(("openssl" ,openssl)
|
||||
("pcre" ,pcre)
|
||||
("w3m" ,w3m)
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
|
|
Loading…
Reference in a new issue