mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: u-boot: Reomve sdl2 dependency on non-GUI builds.
* gnu/packages/bootloaders.scm (u-boot)[native-inputs]: Remove sdl2. (u-boot-tools)[native-inputs]: Add sdl2.
This commit is contained in:
parent
1bc5a77f0a
commit
6b1253718d
1 changed files with 3 additions and 1 deletions
|
@ -465,7 +465,6 @@ (define u-boot
|
|||
("python" ,python)
|
||||
("python-coverage" ,python-coverage)
|
||||
("python-pytest" ,python-pytest)
|
||||
("sdl2" ,sdl2)
|
||||
("swig" ,swig)))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "https://www.denx.de/wiki/U-Boot/")
|
||||
|
@ -478,6 +477,9 @@ (define-public u-boot-tools
|
|||
(package
|
||||
(inherit u-boot)
|
||||
(name "u-boot-tools")
|
||||
(native-inputs
|
||||
`(("sdl2" ,sdl2)
|
||||
,@(package-native-inputs u-boot)))
|
||||
(arguments
|
||||
`(#:make-flags '("HOSTCC=gcc")
|
||||
#:test-target "tests"
|
||||
|
|
Loading…
Reference in a new issue