efraim pushed a commit to branch master
in repository guix.
commit 0dc99fd1492d0ed0101011ffb8c287289e2d7e0d
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Feb 28 12:44:44 2022 +0200
gnu: dtc: Don't depend unconditionally on valgrind.
* gnu/packages/bootloaders.scm (dtc)[native-inputs]: Only include
valgrind when building on a system which supports valgrind.
---
gnu/packages/bootloaders.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 54e47059ee..3cd45b3806 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2016, 2017, 2018, 2021 Marius Bakke <[email protected]>
;;; Copyright © 2016, 2017 Danny Milosavljevic <[email protected]>
;;; Copyright © 2016, 2017 David Craven <[email protected]>
-;;; Copyright © 2017, 2018, 2020, 2021 Efraim Flashner <[email protected]>
+;;; Copyright © 2017, 2018, 2020, 2021, 2022 Efraim Flashner
<[email protected]>
;;; Copyright © 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2019 nee <[email protected]>
;;; Copyright © 2019 Mathieu Othacehe <[email protected]>
@@ -454,12 +454,15 @@ menu to select one of the installed operating systems.")
"0wrl43rvd8nnm1v1wyfdr17vk8q7ymib62vli6da8n9ni4lwbkk5"))))
(build-system gnu-build-system)
(native-inputs
- (list bison
- flex
- libyaml
- pkg-config
- swig
- valgrind))
+ (append
+ (list bison
+ flex
+ libyaml
+ pkg-config
+ swig)
+ (if (member (%current-system) (package-supported-systems valgrind))
+ (list valgrind)
+ '())))
(inputs
(list python))
(arguments