[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: u-boot: Reomve sdl2 dependency on non-GUI bu
From: |
guix-commits |
Subject: |
branch master updated: gnu: u-boot: Reomve sdl2 dependency on non-GUI builds. |
Date: |
Sat, 19 Sep 2020 17:04:01 -0400 |
This is an automated email from the git hooks/post-receive script.
dannym pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6b12537 gnu: u-boot: Reomve sdl2 dependency on non-GUI builds.
6b12537 is described below
commit 6b1253718d1d660e7a91bd59a96bdb16d7c5e0b3
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Sat Sep 19 21:51:44 2020 +0200
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.
---
gnu/packages/bootloaders.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 7692382..d1de5ce 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -465,7 +465,6 @@ tree binary files. These are board description files used
by Linux and BSD.")
("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 @@ also initializes the boards (RAM etc).")
(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"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: u-boot: Reomve sdl2 dependency on non-GUI builds.,
guix-commits <=