[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/11: commencement: Add bootstrap-seeds.
From: |
guix-commits |
Subject: |
04/11: commencement: Add bootstrap-seeds. |
Date: |
Mon, 9 May 2022 04:33:24 -0400 (EDT) |
janneke pushed a commit to branch wip-full-source-bootstrap
in repository guix.
commit 0c4c7b73e49d3be3f44de584c14bdd078f4ccf1e
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Jan 2 09:40:58 2021 +0100
commencement: Add bootstrap-seeds.
* gnu/packages/commencement.scm (bootstrap-seeds): New variable.
---
gnu/packages/commencement.scm | 42 +++++++++++++++++++++++++++++++++++++++++-
1 file changed, 41 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 9d6ed5fd08..663ffacd56 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2017, 2018, 2019, 2021, 2022 Efraim Flashner
<efraim@flashner.co.il>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
-;;; Copyright © 2018, 2019, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2018, 2019, 2020, 2021 Jan (janneke) Nieuwenhuizen
<janneke@gnu.org>
;;; Copyright © 2019, 2020, 2021 Marius Bakke <marius@gnu.org>
;;; Copyright © 2020, 2022 Timothy Sample <samplet@ngyro.com>
;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org>
@@ -266,6 +266,46 @@ pure Scheme to Tar and decompression in one easy step.")
("bootar" ,bootar)
("guile" ,%bootstrap-guile)))
+(define bootstrap-seeds
+ (package
+ (name "bootstrap-seeds")
+ (version "1.0.0")
+ (source
+ (bootstrap-origin
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://lilypond.org/janneke/guix/20220501/"
+ "bootstrap-seeds-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0scz2bx8fd8c821h6y1j3x6ywgxxns7iinyn9z32dnkiacfdcpfn")))))
+ (native-inputs `(("bootar" ,bootar)))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:guile ,%bootstrap-guile
+ #:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((source (assoc-ref %build-inputs "source"))
+ (tar (assoc-ref %build-inputs "bootar"))
+ (out (assoc-ref %outputs "out")))
+ (setenv "PATH" (string-append tar "/bin:"))
+ (invoke "tar" "xvf" source)
+ (mkdir-p out)
+ (copy-recursively "bootstrap-seeds" out)
+ #t))))
+ (home-page "https://github.com/oriansj/bootstrap-seeds")
+ (synopsis "The initial bootstrap seeds: 357-byte hex0 and kaem shell")
+ (description
+ "A prebuilt version of the initial bootstrap seeds. It contains a
+hex0-seed and an optional kaem-minimal shell. The size of the hex0 seeds are
+for knight: 250 bytes, x86-linux:(357 bytes, x86_64-linux: 431 bytes, and
+aarch64-linux 526 bytes. These can be used to build stage0: hex0, hex1, hex2,
+M1, and M2-Planet.")
+ (license license:gpl3+)))
+
(define %bootstrap-mes-rewired
(package
(inherit mes)
- branch wip-full-source-bootstrap created (now 39c7c5d6a2), guix-commits, 2022/05/09
- 02/11: gnu: m2-planet: Update to 1.9.0., guix-commits, 2022/05/09
- 04/11: commencement: Add bootstrap-seeds.,
guix-commits <=
- 06/11: commencement: mes-boot: Update to 0.24, build with M2-Planet., guix-commits, 2022/05/09
- 10/11: commencement: Remove %bootstrap-mes-rewired., guix-commits, 2022/05/09
- 07/11: commencement: tcc-boot0: Use NYACC-1.00.2., guix-commits, 2022/05/09
- 11/11: doc: Add the "Full Source Bootstrap"., guix-commits, 2022/05/09
- 01/11: gnu: mescc-tools: Update to 1.4.0., guix-commits, 2022/05/09
- 03/11: gnu: mes: Update to 0.24., guix-commits, 2022/05/09
- 05/11: commencement: Add stage0-posix., guix-commits, 2022/05/09
- 09/11: bootstrap: Remove %bootstrap-mescc-tools, %bootstrap-mes., guix-commits, 2022/05/09
- 08/11: commencement: tcc-boot0: Update to 0.9.26-1136-g0fbeb2dd., guix-commits, 2022/05/09