gnu: prixovy: Enable Brotli inspection.

* gnu/packages/tor.scm (privoxy)[arguments]: Add "--with-brotli"
to the #:configure-flags.
[inputs]: Add brotl.
This commit is contained in:
Tobias Geerinckx-Rice 2020-11-29 18:23:29 +01:00
parent 70feedbbdb
commit a5ec9f781f
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -172,6 +172,7 @@ (define-public privoxy
(assoc-ref %outputs "out")
"/etc/privoxy")
"--localstatedir=/var"
"--with-brotli"
"--with-openssl")
#:tests? #f ; no test suite
#:phases
@ -194,7 +195,8 @@ (define-public privoxy
(("^logfile") "#logfile")))
#t)))))
(inputs
`(("openssl" ,openssl)
`(("brotli" ,brotli)
("openssl" ,openssl)
("pcre" ,pcre)
("w3m" ,w3m)
("zlib" ,zlib)))