guix-commits
[Top][All Lists]
Advanced

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

04/15: gnu: findutils-boot0: Remove bootstrap leaks.


From: Jan Nieuwenhuizen
Subject: 04/15: gnu: findutils-boot0: Remove bootstrap leaks.
Date: Sun, 9 Sep 2018 09:21:49 -0400 (EDT)

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

commit 70a928026299913a443a93731c2f45fe081f1b24
Author: Jan Nieuwenhuizen <address@hidden>
Date:   Sun Sep 9 13:37:35 2018 +0200

    gnu: findutils-boot0: Remove bootstrap leaks.
    
    * gnu/packages/commencement.scm (findutils-boot0): Remove bootstrap leaks.
---
 gnu/packages/commencement.scm | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 14ad6fe..7064a94 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -121,14 +121,17 @@
 
 (define findutils-boot0
   (package-with-bootstrap-guile
-   (package-with-explicit-inputs (package
-                                   (inherit findutils)
-                                   (name "findutils-boot0"))
-                                 `(("make" ,gnu-make-boot0)
-                                   ("diffutils" ,diffutils-boot0) ; for tests
-                                   ,@(%bootstrap-inputs+toolchain))
-                                 (current-source-location)
-                                 #:guile %bootstrap-guile)))
+   (package (inherit findutils)
+            (name "findutils-boot0")
+            (inputs `(("make" ,gnu-make-boot0)
+                      ("diffutils" ,diffutils-boot0) ; for tests
+                      ,@(%bootstrap-inputs+toolchain)))
+            (propagated-inputs '())
+            (native-inputs '())
+            (arguments `(#:guile ,%bootstrap-guile
+                         #:implicit-inputs? #f
+                         #:tests? #f    ; the test suite needs diffutils
+                         ,@(package-arguments findutils))))))
 
 (define file-boot0
   (package-with-bootstrap-guile



reply via email to

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