janneke pushed a commit to branch wip-hurd-vm
in repository guix.
commit 5170843fc816bd92f63000607b03c5b2670f8b58
Author: Jan (janneke) Nieuwenhuizen <[email protected]>
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 f96d120..88070de 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -352,6 +352,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"))
(util-linux (assoc-ref inputs "util-linux")))
@@ -371,6 +372,7 @@ boot, since this cannot be done from GNU/Linux."
"sutils/MAKEDEV.sh")
(("^PATH=.*")
(string-append "PATH=" out "/bin:"
+ coreutils "/bin:"
sed "/bin:" grep "/bin\n"))
(("^SHELL=.*")
(string-append "SHELL=" bash "/bin/bash\n"))
@@ -428,6 +430,7 @@ fsysopts / --writable\n"))
;; Tools for the /libexec/* scripts.
("bash-minimal" ,bash-minimal)
+ ("coreutils" ,coreutils)
("sed" ,sed)
("grep" ,grep)))
(native-inputs