mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: mes: Update to 0.25.
* gnu/packages/mes.scm (mes): Update to 0.25. [supported-systems]: Add aarch64-linux and riscv64-linux. [native-inputs]: For aarch64-linux, use arm-linux-gnueabihf compiler. Update to latest m2-planet (1.11.0). Change-Id: I8c4c46b1a0e30cdb4545186dfa93625a400bac0f
This commit is contained in:
parent
952d0951da
commit
552e15792b
1 changed files with 12 additions and 6 deletions
|
@ -154,15 +154,16 @@ (define-public nyacc-1.00.2
|
|||
(define-public mes
|
||||
(package
|
||||
(name "mes")
|
||||
(version "0.24.2")
|
||||
(version "0.25")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnu/mes/"
|
||||
"mes-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0vp8v88zszh1imm3dvdfi3m8cywshdj7xcrsq4cgmss69s2y1nkx"))))
|
||||
(supported-systems '("armhf-linux" "i686-linux" "x86_64-linux"))
|
||||
"0h49h85m1jkppfsv95zdxdrrw1q1mwswhq81lwxj1nbyasrm0lij"))))
|
||||
(supported-systems '("aarch64-linux" "armhf-linux" "i686-linux"
|
||||
"x86_64-linux" "riscv64-linux"))
|
||||
(propagated-inputs (list mescc-tools nyacc-1.00.2))
|
||||
(native-inputs
|
||||
(append (list guile-3.0)
|
||||
|
@ -174,10 +175,15 @@ (define-public mes
|
|||
;; MesCC 64 bit .go files installed ready for use with Guile.
|
||||
(list (cross-binutils "i686-unknown-linux-gnu")
|
||||
(cross-gcc "i686-unknown-linux-gnu")))
|
||||
((string-prefix? "aarch64-linux" target-system)
|
||||
;; Use cross-compiler rather than #:system "armhf-linux" to get
|
||||
;; MesCC 64 bit .go files installed ready for use with Guile.
|
||||
(let ((triplet "arm-linux-gnueabihf"))
|
||||
(list (cross-binutils triplet) (cross-gcc triplet))))
|
||||
(else
|
||||
'())))
|
||||
(list graphviz help2man
|
||||
m2-planet-1.9.0
|
||||
m2-planet
|
||||
perl ;build-aux/gitlog-to-changelog
|
||||
texinfo)))
|
||||
(build-system gnu-build-system)
|
||||
|
|
Loading…
Reference in a new issue