guix-commits
[Top][All Lists]
Advanced

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

01/08: gnu: hurd: Add coreutils to startup scripts.


From: guix-commits
Subject: 01/08: gnu: hurd: Add coreutils to startup scripts.
Date: Sun, 5 Apr 2020 07:24:03 -0400 (EDT)

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

commit ea63375c4961081ba0484196e40a40161d1c3118
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sun Apr 5 08:28:16 2020 +0200

    gnu: hurd: Add coreutils to startup scripts.
    
    * gnu/packages/hurd.scm (hurd): Add coreutils.
---
 gnu/packages/hurd.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm
index d44b4a9..35e8569 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -350,6 +350,7 @@ boot, since this cannot be done from GNU/Linux."
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let* ((out  (assoc-ref outputs "out"))
                     (bash (assoc-ref inputs "bash-minimal"))
+                    (coreutils (assoc-ref inputs "coreutils"))
                     (sed  (assoc-ref inputs "sed"))
                     (grep (assoc-ref inputs "grep")))
                (substitute* '("daemons/runttys.c" "daemons/getty.c")
@@ -363,6 +364,7 @@ boot, since this cannot be done from GNU/Linux."
                               "daemons/runsystem.hurd.sh")
                  (("^PATH=.*")
                   (string-append "PATH=" out "/bin:"
+                                 coreutils "/bin:"
                                  sed "/bin:" grep "/bin\n"))
                  (("^SHELL=.*")
                   (string-append "SHELL=" bash "/bin/bash\n"))
@@ -403,6 +405,7 @@ boot, since this cannot be done from GNU/Linux."
 
        ;; Tools for the /libexec/* scripts.
        ("bash-minimal" ,bash-minimal)
+       ("coreutils" ,coreutils)
        ("sed" ,sed)
        ("grep" ,grep)))
     (native-inputs



reply via email to

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