guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

49/63: gnu: commencement: Add coreutils-boot0.


From: guix-commits
Subject: 49/63: gnu: commencement: Add coreutils-boot0.
Date: Mon, 17 Feb 2020 16:01:04 -0500 (EST)

janneke pushed a commit to branch wip-bootstrap
in repository guix.

commit c96dcf04b9f81936e22ec3bc3696a7bc3806bf4f
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Sat Nov 23 11:18:12 2019 +0100

    gnu: commencement: Add coreutils-boot0.
    
    (coreutils-boot0): New variable.
    * gnu/packages/commencement.scm (%boot0-inputs): Add it.
---
 gnu/packages/commencement.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index d18d043..27da035 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2686,6 +2686,21 @@ exec " gcc "/bin/" program
        #:implicit-inputs? #f
        ,@(package-arguments bzip2)))))
 
+(define coreutils-boot0
+  (package
+    (inherit coreutils)
+    (source (bootstrap-origin (package-source coreutils)))
+    (name "coreutils-boot0")
+    (native-inputs `())
+    (inputs
+     `(("make" ,gnu-make-boot0)
+       ,@(%bootstrap-inputs+toolchain)))
+    (arguments
+     `(#:tests? #f
+       #:implicit-inputs? #f
+       #:guile ,%bootstrap-guile
+       ,@(package-arguments coreutils)))))
+
 (define diffutils-boot0
   (package
     (inherit diffutils)
@@ -2801,6 +2816,7 @@ exec " gcc "/bin/" program
 
 (define (%boot0-inputs)
   `(("bzip2" ,bzip2-boot0)
+    ("coreutils" ,coreutils-boot0)
     ("diffutils" ,diffutils-boot0)
     ("findutils" ,findutils-boot0)
     ("file" ,file-boot0)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]