mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: mes: Update to 0.8.
* gnu/packages/mes.scm (mes): Update to 0.8.
This commit is contained in:
parent
9ae3fcb9e8
commit
604e494dc0
1 changed files with 11 additions and 12 deletions
|
@ -54,25 +54,24 @@ (define-public nyacc
|
||||||
(license (list gpl3+ lgpl3+))))
|
(license (list gpl3+ lgpl3+))))
|
||||||
|
|
||||||
(define-public mes
|
(define-public mes
|
||||||
(let ((commit "7fdca75d2188b28df806b34ec92627d57aafa9ae")
|
(let ((triplet "i686-unknown-linux-gnu"))
|
||||||
(revision "0")
|
|
||||||
(triplet "i686-unknown-linux-gnu")
|
|
||||||
(version "0.7"))
|
|
||||||
(package
|
(package
|
||||||
(name "mes")
|
(name "mes")
|
||||||
(version (string-append version "-" revision "." (string-take commit 7)))
|
(version "0.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append "https://gitlab.com/janneke/mes"
|
||||||
(url "https://gitlab.com/janneke/mes")
|
"/repository/archive.tar.gz?ref=v"
|
||||||
(commit commit)))
|
version))
|
||||||
(file-name (string-append name "-" version))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0fvzr1ai2rmi46zdi5b2bdjb6s8ip78mkmsk02yxl46rajmp2pb1"))))
|
(base32
|
||||||
|
"1igmrks20ci6l5c0jx2bn4swf0w8jy5inhg61cwld9d7hwanmdnj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("nyacc" ,nyacc)))
|
`(("mescc-tools" ,mescc-tools)
|
||||||
|
("nyacc" ,nyacc)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("guile" ,guile-2.2)
|
`(("guile" ,guile-2.2)
|
||||||
,@(if (string-prefix? "x86_64-linux" (or (%current-target-system)
|
,@(if (string-prefix? "x86_64-linux" (or (%current-target-system)
|
||||||
|
|
Loading…
Reference in a new issue