guix-commits
[Top][All Lists]
Advanced

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

24/58: gnu: commencement: Add grep-mesboot.


From: guix-commits
Subject: 24/58: gnu: commencement: Add grep-mesboot.
Date: Thu, 6 Feb 2020 17:52:17 -0500 (EST)

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

commit 29a355726a12a621978d8efaa0f0246a084c82e9
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Fri Nov 22 20:32:10 2019 +0100

    gnu: commencement: Add grep-mesboot.
    
    * gnu/packages/commencement.scm (grep-mesboot): New variable.
---
 gnu/packages/commencement.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index c4db83b..5b84e47 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1692,6 +1692,44 @@ ac_cv_c_float_format='IEEE (little-endian)'
                (install-file "src/tar" bin)
                #t))))))))
 
+(define grep-mesboot
+  ;; The initial grep.
+  (package
+    (inherit grep)
+    (name "grep-mesboot")
+    (version "2.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnu/grep/grep-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "1w862l80lgc5mxvpiy4cfwk761d6xxavn0m3xd2l7xs2kmzvp6lq"))))
+    (supported-systems '("i686-linux" "x86_64-linux"))
+    (inputs '())
+    (propagated-inputs '())
+    (native-inputs (%boot-mesboot0-inputs))
+    (arguments
+     `(#:implicit-inputs? #f
+       #:guile ,%bootstrap-guile
+       #:parallel-build? #f
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'patch-configure
+           (lambda _
+             (let* ((bash (assoc-ref %build-inputs "bash"))
+                    (shell (string-append bash "/bin/bash")))
+               (substitute* "configure"
+                 ((" [|][|] ./config.status") " || sh ./config.status")))))
+         (replace 'install
+           (lambda _
+             (let* ((out (assoc-ref %outputs "out"))
+                    (bin (string-append out "/bin")))
+               (install-file "grep" bin)
+               (symlink "grep" (string-append bin "/egrep"))
+               (symlink "grep" (string-append bin "/fgrep"))
+               #t))))))))
+
 (define binutils-mesboot
   (package
     (inherit binutils-mesboot0)



reply via email to

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