diff options
author | Vincent Legoll <vincent.legoll@gmail.com> | 2020-04-04 12:08:07 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-04-04 12:45:36 +0200 |
commit | 6e834bdd9fc201fa6da2ee2d5b1ae77088eec90a (patch) | |
tree | 8a2449a08999722510f7c090710142edd1d1ad39 | |
parent | dd233e4dfa705c9824c39eb7ce02aa7b25b1c9a5 (diff) | |
download | guix-6e834bdd9fc201fa6da2ee2d5b1ae77088eec90a.tar.gz guix-6e834bdd9fc201fa6da2ee2d5b1ae77088eec90a.zip |
gnu: a2ps: Make some inputs native.
* gnu/packages/pretty-print.scm (a2ps)[inputs]: Move groff from here...
[native-inputs]: ...to here.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
-rw-r--r-- | gnu/packages/pretty-print.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/pretty-print.scm b/gnu/packages/pretty-print.scm index 18e557611e..f7655c3535 100644 --- a/gnu/packages/pretty-print.scm +++ b/gnu/packages/pretty-print.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Meiyo Peng <meiyo@riseup.net> ;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com> +;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -71,11 +72,11 @@ (build-system gnu-build-system) (inputs `(("psutils" ,psutils) - ("groff" ,groff) ("gv" ,gv) ("imagemagick" ,imagemagick))) (native-inputs `(("gperf" ,gperf) + ("groff" ,groff) ("perl" ,perl))) (arguments '(#:phases |