2017-04-27 09:43:22 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2021-03-14 06:53:00 -04:00
|
|
|
;;; Copyright © 2017, 2018, 2019, 2020, 2021 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-01-07 03:09:55 -05:00
|
|
|
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
2018-02-18 23:08:21 -05:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2021-05-29 01:22:30 -04:00
|
|
|
;;; Copyright © 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
|
2021-03-28 04:58:18 -04:00
|
|
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
2017-04-27 09:43:22 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages mes)
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (gnu packages base)
|
2019-12-07 09:20:50 -05:00
|
|
|
#:use-module (gnu packages bash)
|
|
|
|
#:use-module (gnu packages bootstrap)
|
|
|
|
#:use-module (gnu packages compression)
|
2017-04-27 09:43:22 -04:00
|
|
|
#:use-module (gnu packages cross-base)
|
|
|
|
#:use-module (gnu packages gcc)
|
2018-08-10 02:32:11 -04:00
|
|
|
#:use-module (gnu packages graphviz)
|
2017-04-27 09:43:22 -04:00
|
|
|
#:use-module (gnu packages guile)
|
2018-07-13 13:42:33 -04:00
|
|
|
#:use-module (gnu packages man)
|
2017-04-27 09:43:22 -04:00
|
|
|
#:use-module (gnu packages package-management)
|
|
|
|
#:use-module (gnu packages perl)
|
2019-06-13 03:36:42 -04:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2018-07-13 13:42:33 -04:00
|
|
|
#:use-module (gnu packages texinfo)
|
2017-04-27 09:43:22 -04:00
|
|
|
#:use-module (guix build-system gnu)
|
2017-05-14 05:35:05 -04:00
|
|
|
#:use-module (guix download)
|
2017-04-27 09:43:22 -04:00
|
|
|
#:use-module (guix git-download)
|
|
|
|
#:use-module (guix licenses)
|
2019-09-29 04:36:46 -04:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix utils))
|
2017-04-27 09:43:22 -04:00
|
|
|
|
2019-06-13 03:36:42 -04:00
|
|
|
(define-public nyacc-0.86
|
2019-09-29 04:39:40 -04:00
|
|
|
;; Nyacc used for bootstrap.
|
2017-05-14 05:35:05 -04:00
|
|
|
(package
|
|
|
|
(name "nyacc")
|
2018-09-08 10:55:32 -04:00
|
|
|
(version "0.86.0")
|
2017-05-14 05:35:05 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://savannah/nyacc/"
|
|
|
|
name "-" version ".tar.gz"))
|
2018-09-08 10:55:32 -04:00
|
|
|
(patches (search-patches "nyacc-binary-literals.patch"))
|
2017-05-14 05:35:05 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-09-08 10:55:32 -04:00
|
|
|
"0lkd9lyspvhxlfs0496gsllwinh62jk9wij6gpadvx9gwz6yavd9"))))
|
2017-05-14 05:35:05 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("guile" ,guile-2.2)))
|
|
|
|
(synopsis "LALR(1) Parser Generator in Guile")
|
|
|
|
(description
|
|
|
|
"NYACC is an LALR(1) parser generator implemented in Guile.
|
|
|
|
The syntax and nomenclature should be considered not stable. It comes with
|
|
|
|
extensive examples, including parsers for the Javascript and C99 languages.")
|
|
|
|
(home-page "https://savannah.nongnu.org/projects/nyacc")
|
|
|
|
(license (list gpl3+ lgpl3+))))
|
|
|
|
|
2020-09-25 17:09:48 -04:00
|
|
|
(define-public nyacc-0.99
|
2019-06-13 03:36:42 -04:00
|
|
|
(package
|
|
|
|
(inherit nyacc-0.86)
|
2019-09-07 13:08:29 -04:00
|
|
|
(version "0.99.0")
|
2019-06-13 03:36:42 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://savannah/nyacc/nyacc-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2019-09-07 13:08:29 -04:00
|
|
|
"0hl5qxx19i4x1r0839sxm19ziqq65g4hy97yik81cc2yb9yvgyv3"))
|
2019-06-13 03:36:42 -04:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
(substitute* (find-files "." "^Makefile\\.in$")
|
|
|
|
(("^SITE_SCM_DIR =.*")
|
|
|
|
"SITE_SCM_DIR = \
|
|
|
|
@prefix@/share/guile/site/@GUILE_EFFECTIVE_VERSION@\n")
|
|
|
|
(("^SITE_SCM_GO_DIR =.*")
|
|
|
|
"SITE_SCM_GO_DIR = \
|
|
|
|
@prefix@/lib/guile/@GUILE_EFFECTIVE_VERSION@/site-ccache\n")
|
|
|
|
(("^INFODIR =.*")
|
|
|
|
"INFODIR = @prefix@/share/info\n")
|
|
|
|
(("^DOCDIR =.*")
|
|
|
|
"DOCDIR = @prefix@/share/doc/$(PACKAGE_TARNAME)\n"))
|
|
|
|
#t))))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("guile" ,guile-2.2)))))
|
|
|
|
|
2020-09-25 17:09:48 -04:00
|
|
|
(define-public nyacc
|
|
|
|
(package
|
|
|
|
(inherit nyacc-0.99)
|
2021-05-29 01:22:30 -04:00
|
|
|
(version "1.04.0")
|
2020-09-25 17:09:48 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://savannah/nyacc/nyacc-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-05-29 01:22:30 -04:00
|
|
|
"0m3mcdaslvvr2iav8ga146hzsja2hdj4656pszljb4q2q7h25ip5"))
|
2020-10-02 18:03:08 -04:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
(substitute* "configure"
|
|
|
|
(("GUILE_GLOBAL_SITE=\\$prefix.*")
|
|
|
|
"GUILE_GLOBAL_SITE=\
|
|
|
|
$prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))
|
|
|
|
#t))))
|
2020-09-25 17:09:48 -04:00
|
|
|
(inputs
|
2021-06-26 10:04:21 -04:00
|
|
|
`(("guile" ,guile-3.0)))
|
|
|
|
(description
|
2021-06-26 12:23:10 -04:00
|
|
|
"@acronym{NYACC, Not Yet Another Compiler Compiler} is set of Guile modules
|
|
|
|
for generating parsers and lexical analyzers. It provides sample parsers,
|
|
|
|
pretty-printers using SXML trees as an intermediate representation, a decent C
|
|
|
|
parser and an `FFI Helper' tool to help create Guile Scheme bindings for C-based
|
|
|
|
libraries. It also provides (partially implemented) compilers based on these
|
|
|
|
parsers to allow execution with Guile as extension languages.")))
|
2020-09-25 17:09:48 -04:00
|
|
|
|
2020-12-13 08:45:45 -05:00
|
|
|
(define-public nyacc-1.00.2
|
|
|
|
(package
|
|
|
|
(inherit nyacc)
|
|
|
|
(version "1.00.2")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://savannah/nyacc/nyacc-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
(substitute* (find-files "." "^Makefile\\.in$")
|
|
|
|
(("^SITE_SCM_DIR =.*")
|
|
|
|
"SITE_SCM_DIR = \
|
|
|
|
@prefix@/share/guile/site/@GUILE_EFFECTIVE_VERSION@\n")
|
|
|
|
(("^SITE_SCM_GO_DIR =.*")
|
|
|
|
"SITE_SCM_GO_DIR = \
|
|
|
|
@prefix@/lib/guile/@GUILE_EFFECTIVE_VERSION@/site-ccache\n")
|
|
|
|
(("^INFODIR =.*")
|
|
|
|
"INFODIR = @prefix@/share/info\n")
|
|
|
|
(("^DOCDIR =.*")
|
|
|
|
"DOCDIR = @prefix@/share/doc/$(PACKAGE_TARNAME)\n"))
|
|
|
|
#t))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"065ksalfllbdrzl12dz9d9dcxrv97wqxblslngsc6kajvnvlyvpk"))))
|
|
|
|
(inputs
|
|
|
|
`(("guile" ,guile-2.2)))))
|
|
|
|
|
2019-09-29 04:39:40 -04:00
|
|
|
(define-public mes-0.19
|
|
|
|
;; Mes used for bootstrap.
|
2019-05-15 12:53:36 -04:00
|
|
|
(package
|
|
|
|
(name "mes")
|
2019-09-29 04:39:40 -04:00
|
|
|
(version "0.19")
|
2019-05-15 12:53:36 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/mes/"
|
|
|
|
"mes-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2019-09-29 04:39:40 -04:00
|
|
|
"15h4yhaywdc0djpjlin2jz1kzahpqxfki0r0aav1qm9nxxmnp1l0"))))
|
2019-05-15 12:53:36 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
|
|
|
(propagated-inputs
|
2019-09-29 04:39:40 -04:00
|
|
|
`(("mescc-tools" ,mescc-tools-0.5.2)
|
|
|
|
("nyacc" ,nyacc-0.86)))
|
2019-05-15 12:53:36 -04:00
|
|
|
(native-inputs
|
|
|
|
`(("guile" ,guile-2.2)
|
|
|
|
,@(let ((target-system (or (%current-target-system)
|
|
|
|
(%current-system))))
|
|
|
|
(cond
|
|
|
|
((string-prefix? "x86_64-linux" target-system)
|
|
|
|
;; Use cross-compiler rather than #:system "i686-linux" to get
|
|
|
|
;; MesCC 64 bit .go files installed ready for use with Guile.
|
|
|
|
`(("i686-linux-binutils" ,(cross-binutils "i686-unknown-linux-gnu"))
|
|
|
|
("i686-linux-gcc" ,(cross-gcc "i686-unknown-linux-gnu"))))
|
|
|
|
(else
|
|
|
|
'())))
|
|
|
|
("graphviz" ,graphviz)
|
|
|
|
("help2man" ,help2man)
|
|
|
|
("perl" ,perl) ; build-aux/gitlog-to-changelog
|
|
|
|
("texinfo" ,texinfo)))
|
|
|
|
(arguments
|
|
|
|
`(#:strip-binaries? #f)) ; binutil's strip b0rkes MesCC/M1/hex2 binaries
|
|
|
|
(synopsis "Scheme interpreter and C compiler for full source bootstrapping")
|
|
|
|
(description
|
|
|
|
"GNU Mes--Maxwell Equations of Software--brings the Reduced Binary Seed
|
2018-12-14 12:52:35 -05:00
|
|
|
bootstrap to Guix and aims to help create full source bootstrapping for
|
|
|
|
GNU/Linux distributions. It consists of a mutual self-hosting Scheme
|
|
|
|
interpreter in C and a Nyacc-based C compiler in Scheme and is compatible with
|
|
|
|
Guile.")
|
2019-12-06 08:44:39 -05:00
|
|
|
(home-page "https://www.gnu.org/software/mes/")
|
2019-05-15 12:53:36 -04:00
|
|
|
(license gpl3+)))
|
2017-06-25 11:10:55 -04:00
|
|
|
|
2019-09-29 04:39:40 -04:00
|
|
|
(define-public mes
|
|
|
|
(package
|
|
|
|
(inherit mes-0.19)
|
2021-03-14 06:53:00 -04:00
|
|
|
(version "0.23")
|
2019-09-29 04:39:40 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/mes/"
|
|
|
|
"mes-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2021-03-14 06:53:00 -04:00
|
|
|
"0mnryfkl0dwbr5gxp16j5s95gw7z1vm1fqa1pxabp0aiar1hw53s"))))
|
2021-03-14 12:32:01 -04:00
|
|
|
(supported-systems '("armhf-linux" "i686-linux" "x86_64-linux"))
|
2019-09-29 04:39:40 -04:00
|
|
|
(propagated-inputs
|
|
|
|
`(("mescc-tools" ,mescc-tools)
|
2020-12-19 09:01:45 -05:00
|
|
|
("nyacc" ,nyacc-1.00.2)))
|
2019-12-07 09:20:50 -05:00
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "C_INCLUDE_PATH")
|
|
|
|
(files '("include")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "LIBRARY_PATH")
|
2020-01-20 14:18:55 -05:00
|
|
|
(files '("lib")))
|
|
|
|
(search-path-specification
|
|
|
|
(variable "MES_PREFIX")
|
|
|
|
(separator #f)
|
|
|
|
(files '("")))))))
|
2019-12-07 09:20:50 -05:00
|
|
|
|
|
|
|
(define-public mes-rb5
|
|
|
|
;; This is the Reproducible-Builds summit 5's Mes, also built on Debian
|
|
|
|
;; GNU/Linux and NixOS to produce the same, bit-for-bit identical result.
|
|
|
|
(package
|
|
|
|
(inherit mes)
|
|
|
|
(name "mes-rb5")
|
2021-03-14 06:53:00 -04:00
|
|
|
(version "0.22")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/mes/"
|
|
|
|
"mes-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0p1jsrrmcbc0zrvbvnjbb6iyxr0in71km293q8qj6gnar6bw09av"))))
|
|
|
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
2019-12-07 09:20:50 -05:00
|
|
|
(inputs '())
|
|
|
|
(propagated-inputs '())
|
|
|
|
(native-inputs
|
|
|
|
`(("bash" ,bash)
|
|
|
|
("coreutils" ,coreutils)
|
|
|
|
("grep" ,grep)
|
|
|
|
("guile" ,guile-2.2)
|
2020-01-20 14:18:55 -05:00
|
|
|
("gzip" ,gzip)
|
2019-12-07 09:20:50 -05:00
|
|
|
("libc" ,glibc)
|
|
|
|
("locales" ,glibc-utf8-locales)
|
|
|
|
("make" ,gnu-make)
|
|
|
|
("mes" ,mes)
|
|
|
|
("mescc-tools" ,mescc-tools)
|
2020-09-25 17:09:48 -04:00
|
|
|
("nyacc" ,nyacc-0.99)
|
2019-12-07 09:20:50 -05:00
|
|
|
("sed" ,sed)
|
2020-01-20 14:18:55 -05:00
|
|
|
("tar" ,tar)))
|
2019-12-07 09:20:50 -05:00
|
|
|
(supported-systems '("i686-linux"))
|
|
|
|
(arguments
|
|
|
|
`(#:implicit-inputs? #f
|
|
|
|
#:strip-binaries? #f ; binutil's strip b0rkes MesCC/M1/hex2 binaries
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(ice-9 popen)
|
|
|
|
(ice-9 rdelim))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'setenv
|
|
|
|
(lambda _
|
|
|
|
(setenv "AR" "mesar")
|
|
|
|
(setenv "CC" "mescc")
|
|
|
|
(setenv "GUILD" "true")
|
|
|
|
(setenv "SCHEME" "mes")
|
|
|
|
(setenv "LC_ALL" "en_US.UTF-8")
|
|
|
|
#t))
|
|
|
|
(replace 'configure
|
|
|
|
(lambda _
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(invoke "sh" "configure.sh"
|
|
|
|
(string-append "--prefix=" out)
|
|
|
|
"--host=i686-unkown-linux-gnu"
|
|
|
|
"--with-courage"))))
|
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
|
|
|
(invoke "sh" "bootstrap.sh")))
|
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
2020-01-20 14:18:55 -05:00
|
|
|
(copy-file "bin/mes-mescc" "bin/mes-mescc-0.21")
|
|
|
|
(system* "sed" "-i" "s/0\\.22/0\\.21/" "bin/mes-mescc-0.21")
|
2019-12-07 09:20:50 -05:00
|
|
|
(let ((sha256sum
|
|
|
|
(read-delimited
|
|
|
|
" "
|
2020-01-20 14:18:55 -05:00
|
|
|
(open-pipe* OPEN_READ "sha256sum" "bin/mes-mescc-0.21"))))
|
2019-12-07 09:20:50 -05:00
|
|
|
(unless
|
|
|
|
(equal?
|
|
|
|
sha256sum
|
|
|
|
"9e0bcb1633c58e7bc415f6ea27cee7951d6b0658e13cdc147e992b31a14625fb")
|
|
|
|
(throw 'error "mes checksum failure"))
|
|
|
|
#t)))
|
|
|
|
(replace 'install
|
|
|
|
(lambda _
|
|
|
|
(invoke "sh" "install.sh"))))))))
|
2019-09-29 04:39:40 -04:00
|
|
|
|
2019-09-29 04:36:46 -04:00
|
|
|
(define-public mescc-tools-0.5.2
|
|
|
|
;; Mescc-tools used for bootstrap.
|
2018-10-12 02:20:20 -04:00
|
|
|
(let ((commit "bb062b0da7bf2724ca40f9002b121579898d4ef7")
|
|
|
|
(revision "0")
|
|
|
|
(version "0.5.2"))
|
|
|
|
(package
|
|
|
|
(name "mescc-tools")
|
2019-10-12 06:22:18 -04:00
|
|
|
(version (git-version version revision commit))
|
2018-10-12 02:20:20 -04:00
|
|
|
(source (origin
|
2019-10-12 06:22:18 -04:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://git.savannah.nongnu.org/r/mescc-tools.git")
|
|
|
|
(commit commit)))
|
|
|
|
(file-name (git-file-name name version))
|
2018-10-12 02:20:20 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2019-10-12 06:22:18 -04:00
|
|
|
"1nc6rnax66vmhqsjg0kgx23pihdcxmww6v325ywf59vsq1jqjvff"))))
|
2018-10-12 02:20:20 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
#:test-target "test"
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(delete 'configure))))
|
|
|
|
(synopsis "Tools for the full source bootstrapping process")
|
|
|
|
(description
|
|
|
|
"Mescc-tools is a collection of tools for use in a full source
|
2018-08-19 07:30:33 -04:00
|
|
|
bootstrapping process. It consists of the M1 macro assembler, the hex2
|
|
|
|
linker, the blood-elf symbol table generator, the kaem shell, exec_enable and
|
|
|
|
get_machine.")
|
|
|
|
(home-page "https://savannah.nongnu.org/projects/mescc-tools")
|
2018-10-12 02:20:20 -04:00
|
|
|
(license gpl3+))))
|
2019-09-17 10:17:20 -04:00
|
|
|
|
2019-09-29 04:36:46 -04:00
|
|
|
(define-public mescc-tools
|
2017-06-25 11:10:55 -04:00
|
|
|
(package
|
2019-09-29 04:36:46 -04:00
|
|
|
(inherit mescc-tools-0.5.2)
|
2017-06-25 11:10:55 -04:00
|
|
|
(name "mescc-tools")
|
2020-12-19 04:06:07 -05:00
|
|
|
(version "0.7.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://git.savannah.nongnu.org/cgit/mescc-tools.git/snapshot/"
|
|
|
|
name "-Release_" version
|
|
|
|
".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1p1ijia4rm3002f5sypidl9v5gq0mlch9b0n61rpxkdsaaxjqax3"))))
|
2021-03-14 11:49:12 -04:00
|
|
|
(supported-systems '("armhf-linux" "aarch64-linux"
|
|
|
|
"i686-linux" "x86_64-linux"))
|
2019-09-29 04:36:46 -04:00
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments mescc-tools-0.5.2)
|
|
|
|
((#:make-flags _)
|
|
|
|
`(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
2020-12-19 04:06:07 -05:00
|
|
|
"CC=gcc"))
|
|
|
|
((#:phases phases)
|
|
|
|
`(modify-phases ,phases
|
|
|
|
(add-after 'unpack 'patch-prefix
|
|
|
|
(lambda _
|
|
|
|
(substitute* "sha256.sh"
|
|
|
|
(("/usr/bin/sha256sum") (which "sha256sum")))
|
|
|
|
#t))))))))
|
2019-11-04 17:13:00 -05:00
|
|
|
|
|
|
|
(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
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
(url "https://github.com/oriansj/m2-planet")
|
2019-11-04 17:13:00 -05:00
|
|
|
(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
|
2020-07-09 10:53:51 -04:00
|
|
|
introspective steps in between. It is self-hosting and for bootstrapping it
|
2019-11-04 17:13:00 -05:00
|
|
|
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+))))
|