all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob f14d58d5a5e224cc3acda35950f1deb5b92bbfec 3937 bytes (raw)
name: gnu/packages/mes.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
;;;
;;; 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)
  #:use-module (gnu packages commencement)
  #:use-module (gnu packages cross-base)
  #:use-module (gnu packages gcc)
  #:use-module (gnu packages guile)
  #:use-module (gnu packages package-management)
  #:use-module (gnu packages perl)
  #:use-module (guix build-system gnu)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix licenses)
  #:use-module (guix packages))

(define-public nyacc
  (package
    (name "nyacc")
    (version "0.78.3")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://download.savannah.gnu.org/releases/nyacc/"
                    name "-" version ".tar.gz"))
              (sha256
               (base32 "0xrnl2hl9rpl50n8cihvclcd951zj640fj5kpi3d6ihwcqjcdi0a"))))
    (build-system gnu-build-system)
    (native-inputs
     `(("guile" ,guile-2.2)))
    (synopsis "LALR(1) Parser Generator in Guile")
    (description
     "NYACC is a LALR(1) Parser Generator Implemented in Guile.
The syntax and nomenclature should be considered not stable.")
    (home-page "https://savannah.nongnu.org/projects/nyacc")
    (license (list gpl3+ lgpl3+))))

(define-public mes
  (let ((commit   "a437c173b9da1949ad966fd50dd4f26e522a910a")
        (revision "0")
        (triplet  "i686-unknown-linux-gnu"))
    (package
      (name "mes")
      (version (string-append "0.5-" revision "." (string-take commit 7)))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                      (url "https://gitlab.com/janneke/mes")
                      (commit commit)))
                (file-name (string-append name "-" version))
                ;; TODO: Unbundle nyacc.
                (sha256
                 (base32 "1ynr0hc0k15307sgzv09k3y5rvy46h0wbh7zcblx1f9v7y8k90zv"))))
      (build-system gnu-build-system)
      (supported-systems '("x86_64-linux"))
      (native-inputs
       `(("guile" ,guile-2.2)
         ;; 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" ,(let ((triplet triplet)) (cross-gcc triplet)))
         ("perl" ,perl)))                       ;build-aux/gitlog-to-changelog
      (arguments
       `(#:phases
         (modify-phases %standard-phases
           (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")))
               #t)))))
      (synopsis "Maxwell Equations of Software")
      (description
       "Mes 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.")
      (home-page "https://gitlab.com/janneke/mes")
      (license gpl3+))))

debug log:

solving f14d58d5a ...
found f14d58d5a in https://yhetil.org/guix/87mvafiv4d.fsf@gnu.org/
found aaa00f78a in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 aaa00f78a63ad77c3357e9230054dc90f49d56f9	gnu/packages/mes.scm

applying [1/1] https://yhetil.org/guix/87mvafiv4d.fsf@gnu.org/
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm
index aaa00f78a..f14d58d5a 100644

Checking patch gnu/packages/mes.scm...
Applied patch gnu/packages/mes.scm cleanly.

index at:
100644 f14d58d5a5e224cc3acda35950f1deb5b92bbfec	gnu/packages/mes.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.