2016-10-16 09:27:39 +00:00
|
|
|
;;; guix.scm -- Guix package definition
|
|
|
|
|
|
|
|
;;; Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-04-02 16:50:07 +00:00
|
|
|
|
|
|
|
;;; Also borrowing code from:
|
|
|
|
;;; guile-sdl2 --- FFI bindings for SDL2
|
|
|
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
|
|
|
|
2016-10-16 09:27:39 +00:00
|
|
|
;;;
|
|
|
|
;;; guix.scm: This file is part of Mes.
|
|
|
|
;;;
|
|
|
|
;;; Mes 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.
|
|
|
|
;;;
|
|
|
|
;;; Mes 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 Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;; GNU Guix development package. To build and install, run:
|
|
|
|
;;
|
|
|
|
;; guix package -f guix.scm
|
|
|
|
;;
|
|
|
|
;; To build it, but not install it, run:
|
|
|
|
;;
|
|
|
|
;; guix build -f guix.scm
|
|
|
|
;;
|
|
|
|
;; To use as the basis for a development environment, run:
|
|
|
|
;;
|
|
|
|
;; guix environment -l guix.scm
|
|
|
|
;;
|
|
|
|
;;; Code:
|
|
|
|
|
2017-04-02 16:50:07 +00:00
|
|
|
(use-modules (srfi srfi-1)
|
|
|
|
(srfi srfi-26)
|
|
|
|
(ice-9 match)
|
|
|
|
(ice-9 popen)
|
|
|
|
(ice-9 rdelim)
|
|
|
|
(gnu packages)
|
2016-10-16 09:27:39 +00:00
|
|
|
(gnu packages base)
|
2017-04-02 16:50:07 +00:00
|
|
|
(gnu packages commencement)
|
2017-04-12 19:27:59 +00:00
|
|
|
(gnu packages cross-base)
|
2017-04-02 16:50:07 +00:00
|
|
|
(gnu packages gcc)
|
2016-10-16 09:27:39 +00:00
|
|
|
(gnu packages guile)
|
2017-05-07 08:04:32 +00:00
|
|
|
(gnu packages mes)
|
2016-10-16 09:27:39 +00:00
|
|
|
(gnu packages package-management)
|
|
|
|
(gnu packages perl)
|
2017-04-02 16:50:07 +00:00
|
|
|
((guix build utils) #:select (with-directory-excursion))
|
|
|
|
(guix build-system gnu)
|
|
|
|
(guix build-system trivial)
|
|
|
|
(guix gexp)
|
2017-06-27 05:53:29 +00:00
|
|
|
(guix download)
|
2016-10-16 09:27:39 +00:00
|
|
|
(guix git-download)
|
|
|
|
(guix licenses)
|
2017-04-02 16:50:07 +00:00
|
|
|
(guix packages))
|
|
|
|
|
|
|
|
(define %source-dir (dirname (current-filename)))
|
|
|
|
|
|
|
|
(define git-file?
|
|
|
|
(let* ((pipe (with-directory-excursion %source-dir
|
|
|
|
(open-pipe* OPEN_READ "git" "ls-files")))
|
|
|
|
(files (let loop ((lines '()))
|
|
|
|
(match (read-line pipe)
|
|
|
|
((? eof-object?)
|
|
|
|
(reverse lines))
|
|
|
|
(line
|
|
|
|
(loop (cons line lines))))))
|
|
|
|
(status (close-pipe pipe)))
|
|
|
|
(lambda (file stat)
|
|
|
|
(match (stat:type stat)
|
|
|
|
('directory #t)
|
|
|
|
((or 'regular 'symlink)
|
|
|
|
(any (cut string-suffix? <> file) files))
|
|
|
|
(_ #f)))))
|
2016-10-16 09:27:39 +00:00
|
|
|
|
2017-08-04 06:59:09 +00:00
|
|
|
(define-public nyacc
|
|
|
|
(package
|
|
|
|
(name "nyacc")
|
2017-11-11 12:20:25 +00:00
|
|
|
(version "0.82.4")
|
2017-08-04 06:59:09 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2017-09-10 19:10:08 +00:00
|
|
|
(uri (string-append "mirror://savannah/nyacc/"
|
|
|
|
name "-" version ".tar.gz"))
|
2017-08-04 06:59:09 +00:00
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2017-11-11 12:20:25 +00:00
|
|
|
"0ykz64jlf1kpxz3qqr0nmci57r5yqwyd3s2g93vrmcnpy9d7y22p"))))
|
2017-08-04 06:59:09 +00: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
|
2018-01-02 06:05:22 +00:00
|
|
|
extensive examples, including parsers for the Javascript and C99 languages.")
|
|
|
|
(home-page "https://savannah.nongnu.org/projects/nyacc")
|
|
|
|
(license (list gpl3+ lgpl3+))))
|
|
|
|
|
|
|
|
(define-public nyacc
|
|
|
|
(package
|
|
|
|
(name "nyacc")
|
2018-04-07 11:41:32 +00:00
|
|
|
(version "0.80.42")
|
2018-01-02 06:05:22 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://gitlab.com/janneke/nyacc"
|
|
|
|
"/repository/archive.tar.gz?ref=v"
|
|
|
|
version))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-04-07 11:41:32 +00:00
|
|
|
"101k3hy4jk5p109k6w4dpx3bjm0g53zwb1yxvvad8khfq00wb8hd"))))
|
2018-01-02 06:05:22 +00: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
|
2017-08-04 06:59:09 +00:00
|
|
|
extensive examples, including parsers for the Javascript and C99 languages.")
|
|
|
|
(home-page "https://savannah.nongnu.org/projects/nyacc")
|
|
|
|
(license (list gpl3+ lgpl3+))))
|
|
|
|
|
2017-06-26 18:29:14 +00:00
|
|
|
(define-public mescc-tools
|
|
|
|
(package
|
|
|
|
(name "mescc-tools")
|
2018-04-08 05:51:14 +00:00
|
|
|
(version "0.4")
|
2017-06-26 18:29:14 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2017-08-04 06:59:09 +00:00
|
|
|
"https://github.com/oriansj/mescc-tools/archive/Release_"
|
2017-06-26 18:29:14 +00:00
|
|
|
version
|
|
|
|
".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-04-08 05:51:14 +00:00
|
|
|
"1iwc8xqwzdaqckb4jkkisljrgn8ii4bl7dzk1l2kpv98hsyq9vi1"))))
|
2017-06-26 18:29:14 +00:00
|
|
|
(build-system gnu-build-system)
|
2017-07-09 16:40:12 +00:00
|
|
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
2017-06-26 18:29:14 +00:00
|
|
|
(arguments
|
|
|
|
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
#:test-target "test"
|
|
|
|
#:phases (modify-phases %standard-phases
|
2018-04-08 05:51:14 +00:00
|
|
|
(delete 'configure)
|
|
|
|
(add-after 'install 'install-2
|
|
|
|
(lambda _
|
|
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
|
|
(copy-file "bin/blood-elf" (string-append out "/bin/blood-elf"))))))))
|
2017-06-26 18:29:14 +00:00
|
|
|
(synopsis "Tools for the full source bootstrapping process")
|
|
|
|
(description
|
|
|
|
"Mescc-tools is a collection of tools for use in a full source
|
2017-07-09 16:40:12 +00:00
|
|
|
bootstrapping process. Currently consists of the M1 macro assembler and the
|
2017-06-26 18:29:14 +00:00
|
|
|
hex2 linker.")
|
2017-08-04 06:59:09 +00:00
|
|
|
(home-page "https://github.com/oriansj/mescc-tools")
|
2017-06-26 18:29:14 +00:00
|
|
|
(license gpl3+)))
|
|
|
|
|
2016-10-16 09:27:39 +00:00
|
|
|
(define-public mes
|
2018-04-28 10:59:29 +00:00
|
|
|
(let ((commit "1fdccefe02af992898ca97495ff3c65555e60e8d")
|
2017-05-02 14:58:56 +00:00
|
|
|
(revision "0")
|
|
|
|
(triplet "i686-unknown-linux-gnu")
|
2018-04-28 10:59:29 +00:00
|
|
|
(version "0.13"))
|
2017-04-12 19:27:59 +00:00
|
|
|
(package
|
|
|
|
(name "mes")
|
2017-05-02 14:58:56 +00:00
|
|
|
(version (string-append version "-" revision "." (string-take commit 7)))
|
2017-04-12 19:27:59 +00:00
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://gitlab.com/janneke/mes")
|
2017-05-02 14:58:56 +00:00
|
|
|
(commit commit)))
|
2017-04-12 19:27:59 +00:00
|
|
|
(file-name (string-append name "-" version))
|
|
|
|
(sha256
|
2018-04-28 10:59:29 +00:00
|
|
|
(base32 "1x2qyc4mw5jbddskl6k9w0vf4igg1l3bbl4ymn8mg21x18arp6a0"))))
|
2017-04-12 19:27:59 +00:00
|
|
|
(build-system gnu-build-system)
|
2017-05-14 07:03:06 +00:00
|
|
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
2017-05-07 08:04:32 +00:00
|
|
|
(propagated-inputs
|
2017-06-25 15:40:38 +00:00
|
|
|
`(("mescc-tools" ,mescc-tools)
|
|
|
|
("nyacc" ,nyacc)))
|
2017-04-12 19:27:59 +00:00
|
|
|
(native-inputs
|
2017-05-02 14:58:56 +00:00
|
|
|
`(("guile" ,guile-2.2)
|
2017-05-23 18:11:51 +00:00
|
|
|
,@(if (string-prefix? "x86_64-linux" (or (%current-target-system)
|
|
|
|
(%current-system)))
|
2017-05-14 07:03:06 +00:00
|
|
|
;; 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 triplet))
|
|
|
|
("i686-linux-gcc" ,(cross-gcc triplet)))
|
|
|
|
'())
|
|
|
|
("perl" ,perl))) ;build-aux/gitlog-to-changelog
|
2017-05-02 14:58:56 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
2017-11-18 12:53:50 +00:00
|
|
|
(add-before 'build 'make-git-source-writable
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(for-each make-file-writable
|
|
|
|
(find-files "." ".*\\.M1"))))
|
2017-05-02 14:58:56 +00:00
|
|
|
(add-before 'install 'generate-changelog
|
|
|
|
(lambda _
|
|
|
|
(with-output-to-file "ChangeLog"
|
|
|
|
(lambda ()
|
|
|
|
(display "Please run
|
|
|
|
build-aux/gitlog-to-changelog --srcdir=<git-checkout> > ChangeLog\n")))
|
2017-07-20 21:17:54 +00:00
|
|
|
#t))
|
2017-09-10 19:59:16 +00:00
|
|
|
(delete 'strip)))) ; binutil's strip b0rkes Mescc/M1/hex2 binaries
|
|
|
|
(synopsis "Scheme interpreter and C compiler for full source bootstrapping")
|
2017-04-12 19:27:59 +00:00
|
|
|
(description
|
2017-07-09 16:40:12 +00:00
|
|
|
"Mes [Maxwell Equations of Software] aims to create full source
|
|
|
|
bootstrapping for GuixSD. It consists of a mutual self-hosting [close to
|
|
|
|
Guile-] Scheme interpreter prototype in C and a Nyacc-based C compiler in
|
|
|
|
[Guile] Scheme.")
|
2017-04-12 19:27:59 +00:00
|
|
|
(home-page "https://gitlab.com/janneke/mes")
|
|
|
|
(license gpl3+))))
|
|
|
|
|
|
|
|
(define-public mes.git
|
2018-04-28 10:59:29 +00:00
|
|
|
(let ((version "0.13")
|
2017-06-03 19:18:53 +00:00
|
|
|
(revision "0")
|
|
|
|
(commit (read-string (open-pipe "git show HEAD | head -1 | cut -d ' ' -f 2" OPEN_READ))))
|
|
|
|
(package
|
|
|
|
(inherit mes)
|
|
|
|
(name "mes.git")
|
|
|
|
(version (string-append version "-" revision "." (string-take commit 7)))
|
|
|
|
(source (local-file %source-dir #:recursive? #t #:select? git-file?)))))
|
2016-10-16 09:27:39 +00:00
|
|
|
|
2017-04-12 19:27:59 +00:00
|
|
|
;; Return it here so `guix build/environment/package' can consume it directly.
|
|
|
|
mes.git
|
2018-04-28 10:59:29 +00:00
|
|
|
|