gnu: mes: Remove input labels.
* gnu/packages/mes.scm (mes)[native-inputs]: Remove labels.
This commit is contained in:
parent
e2690a8eb2
commit
c0cd8b7614
1 changed files with 7 additions and 8 deletions
|
@ -164,21 +164,20 @@ parsers to allow execution with Guile as extension languages.")))
|
||||||
(supported-systems '("armhf-linux" "i686-linux" "x86_64-linux"))
|
(supported-systems '("armhf-linux" "i686-linux" "x86_64-linux"))
|
||||||
(propagated-inputs (list mescc-tools nyacc-1.00.2))
|
(propagated-inputs (list mescc-tools nyacc-1.00.2))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("guile" ,guile-3.0)
|
(append (list guile-3.0)
|
||||||
,@(let ((target-system (or (%current-target-system)
|
(let ((target-system (or (%current-target-system)
|
||||||
(%current-system))))
|
(%current-system))))
|
||||||
(cond
|
(cond
|
||||||
((string-prefix? "x86_64-linux" target-system)
|
((string-prefix? "x86_64-linux" target-system)
|
||||||
;; Use cross-compiler rather than #:system "i686-linux" to get
|
;; Use cross-compiler rather than #:system "i686-linux" to get
|
||||||
;; MesCC 64 bit .go files installed ready for use with Guile.
|
;; MesCC 64 bit .go files installed ready for use with Guile.
|
||||||
`(("i686-linux-binutils" ,(cross-binutils "i686-unknown-linux-gnu"))
|
(list (cross-binutils "i686-unknown-linux-gnu")
|
||||||
("i686-linux-gcc" ,(cross-gcc "i686-unknown-linux-gnu"))))
|
(cross-gcc "i686-unknown-linux-gnu")))
|
||||||
(else
|
(else
|
||||||
'())))
|
'())))
|
||||||
("graphviz" ,graphviz)
|
(list graphviz help2man
|
||||||
("help2man" ,help2man)
|
perl ;build-aux/gitlog-to-changelog
|
||||||
("perl" ,perl) ; build-aux/gitlog-to-changelog
|
texinfo)))
|
||||||
("texinfo" ,texinfo)))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:strip-binaries? #f)) ; binutil's strip b0rkes MesCC/M1/hex2 binaries
|
`(#:strip-binaries? #f)) ; binutil's strip b0rkes MesCC/M1/hex2 binaries
|
||||||
|
|
Reference in a new issue