mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: Add m2-planet.
* gnu/packages/mes.scm (m2-planet): New variable.
This commit is contained in:
parent
5a17042e70
commit
99b340f5ee
1 changed files with 35 additions and 0 deletions
|
@ -204,3 +204,38 @@ (define-public mescc-tools
|
||||||
((#:make-flags _)
|
((#:make-flags _)
|
||||||
`(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
`(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||||
"CC=gcc"))))))
|
"CC=gcc"))))))
|
||||||
|
|
||||||
|
(define-public m2-planet
|
||||||
|
(let ((commit "b87ddb0051b168ea45f8d49a610dcd069263336a")
|
||||||
|
(revision "2"))
|
||||||
|
(package
|
||||||
|
(name "m2-planet")
|
||||||
|
(version (string-append "1.4.0-" revision "." (string-take commit 7)))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/oriansj/m2-planet.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0yyc0fcbbxi9jqa1n76x0rwspdrwmc8g09jlmsw9c35nflrhmz8q"))))
|
||||||
|
(native-inputs
|
||||||
|
`(("mescc-tools" ,mescc-tools)))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
|
#:tests? #f
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(delete 'bootstrap)
|
||||||
|
(delete 'configure))))
|
||||||
|
(synopsis "The PLAtform NEutral Transpiler")
|
||||||
|
(description
|
||||||
|
"M2-Planet, the PLAtform NEutral Transpiler, when combined with
|
||||||
|
mescc-tools, compiles a subset of the C language into working binaries with
|
||||||
|
introspective steps inbetween. It is self-hosting and for bootstrapping it
|
||||||
|
also has an implementation in the M1 macro assembly language. M2-Planet is
|
||||||
|
built as Phase-5 of the full source bootstrapping process and is capable of
|
||||||
|
building GNU Mes.")
|
||||||
|
(home-page "https://github.com/oriansj/m2-planet")
|
||||||
|
(license gpl3+))))
|
||||||
|
|
Loading…
Reference in a new issue