3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: gdb: Add dependency on libxml2.

* gnu/packages/gdb.scm (gdb)[inputs]: Add LIBXML2.
This commit is contained in:
Ludovic Courtès 2014-05-06 14:06:16 +02:00
parent 2517859411
commit 03f4500118

View file

@ -57,7 +57,11 @@
("readline" ,readline)
("ncurses" ,ncurses)
("python" ,python-wrapper)
("dejagnu" ,dejagnu)))
("dejagnu" ,dejagnu)
;; Allow use of XML-formatted syscall information. This enables 'catch
;; syscall' and similar commands.
("libxml2" ,libxml2)))
(native-inputs
`(("texinfo" ,texinfo)))
(home-page "http://www.gnu.org/software/gdb/")