[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/15: gnu: file-boot0: Remove bootstrap leaks.
From: |
Jan Nieuwenhuizen |
Subject: |
05/15: gnu: file-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 1b6b2f1cfe073b30fac09c183b5792dcb4d8959c
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sun Sep 9 13:40:58 2018 +0200
gnu: file-boot0: Remove bootstrap leaks.
* gnu/packages/commencement.scm (file-boot0): Remove bootstrap leaks.
---
gnu/packages/commencement.scm | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 7064a94..c8108f6 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -135,13 +135,17 @@
(define file-boot0
(package-with-bootstrap-guile
- (package-with-explicit-inputs (package
- (inherit file)
- (name "file-boot0"))
- `(("make" ,gnu-make-boot0)
- ,@(%bootstrap-inputs+toolchain))
- (current-source-location)
- #:guile %bootstrap-guile)))
+ (package
+ (inherit file)
+ (name "file-boot0")
+ (inputs `(("make" ,gnu-make-boot0)
+ ,@(%bootstrap-inputs+toolchain)))
+ (propagated-inputs '())
+ (native-inputs '())
+ (arguments `(#:guile ,%bootstrap-guile
+ #:implicit-inputs? #f
+ #:strip-binaries?
+ ,@(package-arguments file))))))
(define (%boot0-inputs)
`(("make" ,gnu-make-boot0)
- branch wip-bootstrap created (now 1e84ca7), Jan Nieuwenhuizen, 2018/09/09
- 07/15: gnu: m4-boot0: New variable., Jan Nieuwenhuizen, 2018/09/09
- 08/15: gnu: bison-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/09
- 04/15: gnu: findutils-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/09
- 11/15: guix: copy-linux-headers: Prepare for Mes bootstrap., Jan Nieuwenhuizen, 2018/09/09
- 02/15: bootstrap: %bootstrap-inputs+toolchain: Prepare for Mes bootstrap., Jan Nieuwenhuizen, 2018/09/09
- 03/15: gnu: diffutils-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/09
- 06/15: gnu: perl-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/09
- 10/15: guix: package-from-tarball: Allow PROGRAM-TO-TEST to be #f., Jan Nieuwenhuizen, 2018/09/09
- 05/15: gnu: file-boot0: Remove bootstrap leaks.,
Jan Nieuwenhuizen <=
- 09/15: gnu: texinfo-boot0: Remove bootstrap leaks., Jan Nieuwenhuizen, 2018/09/09
- 13/15: gnu: Add Mes bootstrap seeds., Jan Nieuwenhuizen, 2018/09/09
- 12/15: gnu: Add linux-libre-headers-bootstrap-tarball., Jan Nieuwenhuizen, 2018/09/09
- 15/15: bootstrap: Replace GNU toolchain seeds with Mes for i686-linux., Jan Nieuwenhuizen, 2018/09/09
- 01/15: bootstrap: %bootstrap-inputs: Prepare for Mes bootstrap., Jan Nieuwenhuizen, 2018/09/09
- 14/15: bootstrap: Add Mes bootstrap., Jan Nieuwenhuizen, 2018/09/09