diff options
author | Vincent Legoll <vincent.legoll@gmail.com> | 2020-03-30 22:21:08 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-03-31 09:41:32 +0200 |
commit | 3926d0fcffb3d8bf8d97507e399f3d8cd96c852f (patch) | |
tree | f614c9ceeb5c9f40f52b15c431d0b39e579f577f /gnu | |
parent | 011f9412795c141ea05fdfa3096ab252252d7080 (diff) | |
download | patches-3926d0fcffb3d8bf8d97507e399f3d8cd96c852f.tar patches-3926d0fcffb3d8bf8d97507e399f3d8cd96c852f.tar.gz |
gnu: privoxy: Make some inputs native.
* gnu/packages/tor.scm (privoxy)[native-inputs]: New field.
[inputs]: Move autoconf & automake to native-inputs.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
Diffstat (limited to 'gnu')
-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 61e52ba22c..6c6da2379a 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2017, 2018, 2019 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -141,8 +142,9 @@ rejects UDP traffic from the application you're using.") (inputs `(("w3m" ,w3m) ("pcre" ,pcre) - ("zlib" ,zlib) - ("autoconf" ,autoconf) + ("zlib" ,zlib))) + (native-inputs + `(("autoconf" ,autoconf) ("automake" ,automake))) (home-page "https://www.privoxy.org") (synopsis "Web proxy with advanced filtering capabilities for enhancing privacy") |