[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/63: bootstrap: nyacc-boot. WIP
From: |
guix-commits |
Subject: |
13/63: bootstrap: nyacc-boot. WIP |
Date: |
Sun, 24 Nov 2019 05:52:59 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit f19f68ac9a49e2cefb82e1edf9ae4f4097672c49
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sun Sep 15 19:01:33 2019 +0200
bootstrap: nyacc-boot. WIP
Scheme-only bootstrap.
* gnu/packages/commencement.scm (nyacc-boot): New variable.
---
gnu/packages/commencement.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 8bf7704..c5ea10e 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -84,6 +84,30 @@
;;;
;;; Code:
+(define nyacc-boot
+ ;; The regular Nyacc has a snippet fix in source, which leads to tar.xz.
+ ;; During bootstrap we can only unzip .gz.
+ (package
+ (inherit nyacc)
+ (name "nyacc-boot")
+ (version "0.99.0")
+ (source (bootstrap-origin
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://savannah/nyacc/nyacc-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0hl5qxx19i4x1r0839sxm19ziqq65g4hy97yik81cc2yb9yvgyv3")))))
+ (inputs '())
+ (propagated-inputs '())
+ (native-inputs
+ `(("bash" , %bootstrap-gash)
+ ("guile" ,%bootstrap-guile)))
+ (arguments
+ `(#:implicit-inputs? #f
+ #:guile ,%bootstrap-guile))))
+
(define mes-boot
(package
(inherit mes)
- 02/63: bootstrap: mescc-tools-static: Update to 0.6.1., (continued)
- 02/63: bootstrap: mescc-tools-static: Update to 0.6.1., guix-commits, 2019/11/24
- 03/63: bootstrap: mes-minimal: Update to mes-0.21., guix-commits, 2019/11/24
- 04/63: gnu: Remove mescc-tools-0.5.2., guix-commits, 2019/11/24
- 05/63: bootstrap: bootstrap-mescc-tools: Update to mescc-tools-0.6.1., guix-commits, 2019/11/24
- 06/63: bootstrap: bootstrap-mes: Update to mes-0.21., guix-commits, 2019/11/24
- 07/63: gnu: Add ncompress., guix-commits, 2019/11/24
- 08/63: gnu: Add gash-core-utils., guix-commits, 2019/11/24
- 09/63: bootstrap: Add gash-boot., guix-commits, 2019/11/24
- 10/63: bootstrap: Add gash-core-utils-boot., guix-commits, 2019/11/24
- 11/63: bootstrap: Add %gash-bootstrap-guile, %gash-bootstrap-tarball., guix-commits, 2019/11/24
- 13/63: bootstrap: nyacc-boot. WIP,
guix-commits <=
- 12/63: bootstrap: Add %bootstrap-gash. WIP, guix-commits, 2019/11/24
- 14/63: bootstrap: Add %bootstrap-gash-rewired.., guix-commits, 2019/11/24
- 15/63: bootstrap: mes-boot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 16/63: bootstrap: tcc-boot0: Scheme-only bootstrap. WIP, guix-commits, 2019/11/24
- 17/63: bootstrap: Add gzip-mesboot0., guix-commits, 2019/11/24
- 18/63: bootstrap: make-mesboot0: Scheme-only bootstrap., guix-commits, 2019/11/24
- 19/63: bootstrap: Add bzip2-mesboot0., guix-commits, 2019/11/24
- 20/63: bootstrap: Add bash-mesboot0., guix-commits, 2019/11/24
- 21/63: bootstrap: tcc-boot: Scheme-only bootstrap., guix-commits, 2019/11/24
- 22/63: bootstrap: diffuils-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/24