gnu: dtc: Move native-inputs and inputs after arguments.
* gnu/packages/bootloaders.scm (dtc) [native-inputs, inputs]: Move after the arguments field, per convention.
This commit is contained in:
parent
5dcf82452f
commit
ec3c37d733
1 changed files with 12 additions and 12 deletions
|
@ -573,18 +573,6 @@ The SUBDIR argument defaults to \"efi/Guix\", as it is also the case for
|
||||||
(base32
|
(base32
|
||||||
"0xm38h31jb29xfh2sfyk48d8wdfq4b8lmb412zx9vjr35izjb9iq"))))
|
"0xm38h31jb29xfh2sfyk48d8wdfq4b8lmb412zx9vjr35izjb9iq"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
|
||||||
(append
|
|
||||||
(list bison
|
|
||||||
flex
|
|
||||||
libyaml
|
|
||||||
pkg-config
|
|
||||||
swig)
|
|
||||||
(if (member (%current-system) (package-supported-systems valgrind))
|
|
||||||
(list valgrind)
|
|
||||||
'())))
|
|
||||||
(inputs
|
|
||||||
(list python))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:make-flags
|
||||||
(list (string-append "CC=" ,(cc-for-target))
|
(list (string-append "CC=" ,(cc-for-target))
|
||||||
|
@ -605,6 +593,18 @@ The SUBDIR argument defaults to \"efi/Guix\", as it is also the case for
|
||||||
(("pkg-config")
|
(("pkg-config")
|
||||||
,(pkg-config-for-target)))))
|
,(pkg-config-for-target)))))
|
||||||
(delete 'configure)))) ; no configure script
|
(delete 'configure)))) ; no configure script
|
||||||
|
(native-inputs
|
||||||
|
(append
|
||||||
|
(list bison
|
||||||
|
flex
|
||||||
|
libyaml
|
||||||
|
pkg-config
|
||||||
|
swig)
|
||||||
|
(if (member (%current-system) (package-supported-systems valgrind))
|
||||||
|
(list valgrind)
|
||||||
|
'())))
|
||||||
|
(inputs
|
||||||
|
(list python))
|
||||||
(home-page "https://www.devicetree.org")
|
(home-page "https://www.devicetree.org")
|
||||||
(synopsis "Compiles device tree source files")
|
(synopsis "Compiles device tree source files")
|
||||||
(description "@command{dtc} compiles
|
(description "@command{dtc} compiles
|
||||||
|
|
Reference in a new issue