guix-commits
[Top][All Lists]
Advanced

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

46/57: bootstrap: Add gawk-boot0.


From: guix-commits
Subject: 46/57: bootstrap: Add gawk-boot0.
Date: Mon, 16 Dec 2019 13:20:14 -0500 (EST)

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

commit ee62ee59f1f5d2ce968448bee2b66c4637283d3f
Author: Jan Nieuwenhuizen <address@hidden>
Date:   Wed Dec 11 17:24:21 2019 +0100

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

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 2cf5bd0..589608e 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2775,11 +2775,28 @@ exec " gcc "/bin/" program
        #:strip-binaries? #f
        #:validate-runpath? #f))))
 
+(define gawk-boot0
+  (package
+    (inherit patch)
+    (source (bootstrap-origin (package-source gawk)))
+    (name "gawk-boot0")
+    (native-inputs '())
+    (inputs
+     `(("make" ,gnu-make-boot0)
+       ,@(%bootstrap-inputs+toolchain)))
+    (arguments
+     `(#:tests? #f
+       #:implicit-inputs? #f
+       #:guile ,%bootstrap-guile
+       #:strip-binaries? #f
+       #:validate-runpath? #f))))
+
 (define (%boot0-inputs)
   `(("make" ,gnu-make-boot0)
     ("diffutils" ,diffutils-boot0)
     ("findutils" ,findutils-boot0)
     ("file" ,file-boot0)
+    ("gawk" ,gawk-boot0)
     ,@(%bootstrap-inputs+toolchain)))
 
 (define* (boot-triplet #:optional (system (%current-system)))



reply via email to

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