summaryrefslogtreecommitdiff
path: root/gnu/packages/man.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-12-13 17:18:24 +0100
committerLudovic Courtès <ludo@gnu.org>2021-12-13 17:48:25 +0100
commit8394619baceb118df92e355377fd543bb1aa501a (patch)
tree504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/man.scm
parentaca2defe0172868295941fd9f0e97886f6e9b2d4 (diff)
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/man.scm')
-rw-r--r--gnu/packages/man.scm29
1 files changed, 13 insertions, 16 deletions
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm
index 47c5ae12883..53ffc4ac626 100644
--- a/gnu/packages/man.scm
+++ b/gnu/packages/man.scm
@@ -69,8 +69,7 @@
69 (modify-phases %standard-phases 69 (modify-phases %standard-phases
70 (delete 'configure)))) 70 (delete 'configure))))
71 (propagated-inputs 71 (propagated-inputs
72 `(("perl" ,perl) 72 (list perl perl-xml-parser))
73 ("perl-xml-parser" ,perl-xml-parser)))
74 (synopsis "XML to Man converter") 73 (synopsis "XML to Man converter")
75 (description "XMLtoMan and XMLMantoHTML are two small scripts to convert xml 74 (description "XMLtoMan and XMLMantoHTML are two small scripts to convert xml
76to man pages in groff format or html. It features the usual man page items such 75to man pages in groff format or html. It features the usual man page items such
@@ -200,18 +199,16 @@ a flexible and convenient way.")
200 (guix build utils) 199 (guix build utils)
201 (srfi srfi-1)))) 200 (srfi srfi-1))))
202 (native-inputs 201 (native-inputs
203 `(("pkg-config" ,pkg-config) 202 (list pkg-config flex groff)) ;needed at build time (troff, grops, soelim, etc.)
204 ("flex" ,flex)
205 ("groff" ,groff))) ;needed at build time (troff, grops, soelim, etc.)
206 (inputs 203 (inputs
207 `(("gdbm" ,gdbm) 204 (list gdbm
208 ("groff-minimal" ,groff-minimal) 205 groff-minimal
209 ("less" ,less) 206 less
210 ("libpipeline" ,libpipeline) 207 libpipeline
211 ;; FIXME: 4.8 and later can use libseccomp, but it causes test 208 ;; FIXME: 4.8 and later can use libseccomp, but it causes test
212 ;; failures in the build chroot. 209 ;; failures in the build chroot.
213 ;;("libseccomp" ,libseccomp) 210 ;;("libseccomp" ,libseccomp)
214 ("util-linux" ,util-linux))) 211 util-linux))
215 (native-search-paths 212 (native-search-paths
216 (list (search-path-specification 213 (list (search-path-specification
217 (variable "MANPATH") 214 (variable "MANPATH")
@@ -254,8 +251,8 @@ the traditional flat-text whatis databases.")
254 (("^PREFIX=.*") 251 (("^PREFIX=.*")
255 (string-append "PREFIX=" (assoc-ref outputs "out") 252 (string-append "PREFIX=" (assoc-ref outputs "out")
256 "\n")))))))) 253 "\n"))))))))
257 (native-inputs `(("perl" ,perl))) ;used to run tests 254 (native-inputs (list perl)) ;used to run tests
258 (inputs `(("zlib" ,zlib))) 255 (inputs (list zlib))
259 (native-search-paths 256 (native-search-paths
260 (list (search-path-specification 257 (list (search-path-specification
261 (variable "MANPATH") 258 (variable "MANPATH")
@@ -399,7 +396,7 @@ in C99.")
399 #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))) 396 #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
400 #:phases (modify-phases %standard-phases (delete 'configure)))) 397 #:phases (modify-phases %standard-phases (delete 'configure))))
401 (inputs 398 (inputs
402 `(("gawk" ,gawk))) 399 (list gawk))
403 (home-page "https://github.com/mvertes/txt2man") 400 (home-page "https://github.com/mvertes/txt2man")
404 (synopsis "Convert text to man page") 401 (synopsis "Convert text to man page")
405 (description "Txt2man converts flat ASCII text to man page format.") 402 (description "Txt2man converts flat ASCII text to man page format.")