Archived
1
0
Fork 0

gnu: mes: Update to 0.6.

* gnu/packages/mes.scm (mes): Update to 0.6.
This commit is contained in:
Jan Nieuwenhuizen 2017-05-14 11:35:30 +02:00
parent 516bfed7a3
commit e0bb0a81ec
No known key found for this signature in database
GPG key ID: A781B6A92F5C71D6

View file

@ -54,30 +54,35 @@ extensive examples, including parsers for the Javascript and C99 languages.")
(license (list gpl3+ lgpl3+)))) (license (list gpl3+ lgpl3+))))
(define-public mes (define-public mes
(let ((commit "a437c173b9da1949ad966fd50dd4f26e522a910a") (let ((commit "d4420bbcc9f994e2cce430cf156f383dc4092bca")
(revision "0") (revision "0")
(triplet "i686-unknown-linux-gnu")) (triplet "i686-unknown-linux-gnu")
(version "0.6"))
(package (package
(name "mes") (name "mes")
(version (string-append "0.5-" revision "." (string-take commit 7))) (version (string-append version "-" revision "." (string-take commit 7)))
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://gitlab.com/janneke/mes") (url "https://gitlab.com/janneke/mes")
(commit commit))) (commit commit)))
(file-name (string-append name "-" version)) (file-name (string-append name "-" version))
;; TODO: Unbundle nyacc.
(sha256 (sha256
(base32 "1ynr0hc0k15307sgzv09k3y5rvy46h0wbh7zcblx1f9v7y8k90zv")))) (base32 "0qqywk3siyhf08v7xac08lqldklrqfndlp495wgy6ii9fn93197k"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(supported-systems '("x86_64-linux")) (supported-systems '("i686-linux" "x86_64-linux"))
(propagated-inputs
`(("nyacc" ,nyacc)))
(native-inputs (native-inputs
`(("guile" ,guile-2.2) `(("guile" ,guile-2.2)
;; Use cross-compiler rather than #:system "i686-linux" to get ,@(if (or (equal? (%current-system) "x86_64-linux")
;; MesCC 64 bit .go files installed ready for use with Guile. (string-prefix? (%current-target-system) "x86_64-linux"))
("i686-linux-binutils" ,(cross-binutils triplet)) ;; Use cross-compiler rather than #:system "i686-linux" to get
("i686-linux-gcc" ,(let ((triplet triplet)) (cross-gcc triplet))) ;; MesCC 64 bit .go files installed ready for use with Guile.
("perl" ,perl))) ;build-aux/gitlog-to-changelog `(("i686-linux-binutils" ,(cross-binutils triplet))
("i686-linux-gcc" ,(cross-gcc triplet)))
'())
("perl" ,perl))) ;build-aux/gitlog-to-changelog
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases