mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: asciidoc: Use local docbook-xml package.
* gnu/packages/documentation.scm (asciidoc)[inputs]: Add docbook-xml. [arguments]: Add 'make-local-docbook-xml' phase.
This commit is contained in:
parent
f9cdf1c15b
commit
3078821d13
1 changed files with 9 additions and 0 deletions
|
@ -83,8 +83,17 @@ (define-public asciidoc
|
|||
(string-append (assoc-ref inputs "docbook-xsl")
|
||||
"/xml/xsl/docbook-xsl-"
|
||||
,(package-version docbook-xsl)))))
|
||||
#t))
|
||||
;; Do the same for docbook-xml.
|
||||
(add-before 'install 'make-local-docbook-xml
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "docbook45.conf"
|
||||
(("http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd")
|
||||
(string-append (assoc-ref inputs "docbook-xml")
|
||||
"/xml/dtd/docbook/docbookx.dtd")))
|
||||
#t)))))
|
||||
(inputs `(("python" ,python-2)
|
||||
("docbook-xml" ,docbook-xml)
|
||||
("docbook-xsl" ,docbook-xsl)
|
||||
("libxml2" ,libxml2)
|
||||
("libxslt" ,libxslt)))
|
||||
|
|
Loading…
Reference in a new issue