mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
distro: gdb: Add dependency on Expat and Python.
* distro/packages/gdb.scm (gdb): Add Expat and Python as inputs.
This commit is contained in:
parent
d041488307
commit
183c9a89a3
1 changed files with 5 additions and 3 deletions
|
@ -22,7 +22,9 @@ (define-module (distro packages gdb)
|
||||||
#:use-module (distro packages dejagnu)
|
#:use-module (distro packages dejagnu)
|
||||||
#:use-module (distro packages texinfo)
|
#:use-module (distro packages texinfo)
|
||||||
#:use-module (distro packages multiprecision)
|
#:use-module (distro packages multiprecision)
|
||||||
#:use-module (guix licenses)
|
#:use-module (distro packages xml)
|
||||||
|
#:use-module (distro packages python)
|
||||||
|
#:use-module ((guix licenses) #:select (gpl3+))
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu))
|
#:use-module (guix build-system gnu))
|
||||||
|
@ -46,12 +48,12 @@ (define-public gdb
|
||||||
(patch-makefile-SHELL "gdb/gdbserver/Makefile.in"))
|
(patch-makefile-SHELL "gdb/gdbserver/Makefile.in"))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(inputs
|
(inputs
|
||||||
`(;; ("expat" ,expat)
|
`(("expat" ,expat)
|
||||||
("mpfr" ,mpfr)
|
("mpfr" ,mpfr)
|
||||||
("gmp" ,gmp)
|
("gmp" ,gmp)
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
("ncurses" ,ncurses)
|
("ncurses" ,ncurses)
|
||||||
;; ("python" ,python) ; TODO: Add dependency on Python.
|
("python" ,python)
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("dejagnu" ,dejagnu)))
|
("dejagnu" ,dejagnu)))
|
||||||
(home-page "http://www.gnu.org/software/gdb/")
|
(home-page "http://www.gnu.org/software/gdb/")
|
||||||
|
|
Loading…
Reference in a new issue