mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: doxygen: Add propagated input graphviz.
* gnu/packages/doxygen.scm (doxygen): Add propagated input graphviz.
This commit is contained in:
parent
707d3e24a2
commit
9e57c1b587
1 changed files with 3 additions and 4 deletions
|
@ -24,6 +24,7 @@ (define-module (gnu packages doxygen)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (gnu packages python))
|
#:use-module (gnu packages python))
|
||||||
|
@ -42,16 +43,14 @@ (define-public doxygen
|
||||||
(patches (list (search-patch "doxygen-tmake.patch")
|
(patches (list (search-patch "doxygen-tmake.patch")
|
||||||
(search-patch "doxygen-test.patch")))))
|
(search-patch "doxygen-test.patch")))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
;; The presence of graphviz is checked, but it does not seem to influence
|
|
||||||
;; the output: Even after adding it as an input, no reference to it is
|
|
||||||
;; retained. It might be an option to add it as a propagated input,
|
|
||||||
;; only so that it becomes installed in the user profile.
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("bison" ,bison)
|
`(("bison" ,bison)
|
||||||
("flex" ,flex)
|
("flex" ,flex)
|
||||||
("libxml2" ,libxml2) ; provides xmllint for the tests
|
("libxml2" ,libxml2) ; provides xmllint for the tests
|
||||||
("perl" ,perl) ; for the tests
|
("perl" ,perl) ; for the tests
|
||||||
("python" ,python-2))) ; for creating the documentation
|
("python" ,python-2))) ; for creating the documentation
|
||||||
|
(propagated-inputs
|
||||||
|
`(("graphviz" ,graphviz)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test"
|
`(#:test-target "test"
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Loading…
Reference in a new issue