guix-commits
[Top][All Lists]
Advanced

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

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


From: guix-commits
Subject: 49/58: gnu: commencement: Add coreutils-boot0.
Date: Thu, 6 Feb 2020 17:52:25 -0500 (EST)

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

commit e42b86bb3b108253ea50bc754c2d7885c51800c5
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 a720f49..ec9843f 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2685,6 +2685,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)
@@ -2800,6 +2815,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]