guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: commencement: Add "-boot0" to early packages.


From: Ludovic Courtès
Subject: 03/07: gnu: commencement: Add "-boot0" to early packages.
Date: Fri, 18 Dec 2015 23:02:58 +0000

civodul pushed a commit to branch core-updates
in repository guix.

commit 09964b4fc612c55f7a2e519429d318469830c921
Author: Ludovic Courtès <address@hidden>
Date:   Fri Dec 18 22:17:47 2015 +0100

    gnu: commencement: Add "-boot0" to early packages.
    
    * gnu/packages/commencement.scm (diffutils-boot0)[name]: New field.
    * gnu/packages/commencement.scm (findutils-boot0, file-boot0,
    perl-boot0): Change 'name' field to include "-boot0".
---
 gnu/packages/commencement.scm |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index eda0432..578ded2 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -92,12 +92,15 @@
                                             ,@%bootstrap-inputs)
                                           #:guile %bootstrap-guile)))
      (package (inherit p)
+       (name "diffutils-boot0")
        (arguments `(#:tests? #f         ; the test suite needs diffutils
                     ,@(package-arguments p)))))))
 
 (define findutils-boot0
   (package-with-bootstrap-guile
-   (package-with-explicit-inputs findutils
+   (package-with-explicit-inputs (package
+                                   (inherit findutils)
+                                   (name "findutils-boot0"))
                                  `(("make" ,gnu-make-boot0)
                                    ("diffutils" ,diffutils-boot0) ; for tests
                                    ,@%bootstrap-inputs)
@@ -106,7 +109,9 @@
 
 (define file-boot0
   (package-with-bootstrap-guile
-   (package-with-explicit-inputs file
+   (package-with-explicit-inputs (package
+                                   (inherit file)
+                                   (name "file-boot0"))
                                  `(("make" ,gnu-make-boot0)
                                    ,@%bootstrap-inputs)
                                  (current-source-location)
@@ -262,6 +267,7 @@
 (define perl-boot0
   (let ((perl (package
                 (inherit perl)
+                (name "perl-boot0")
                 (arguments
                  (substitute-keyword-arguments (package-arguments perl)
                    ((#:phases phases)



reply via email to

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