mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: coreutils-light: Rename to coreutils-minimal.
* gnu/packages/base.scm (coreutils-light): Rename to ... (coreutils-minimal): ...this. * gnu/packages/commencement.scm (%boot5-inputs): Use it.
This commit is contained in:
parent
f24931d841
commit
d0f74308e2
2 changed files with 3 additions and 3 deletions
|
@ -293,11 +293,11 @@ (define-public coreutils
|
||||||
(license gpl3+)
|
(license gpl3+)
|
||||||
(home-page "http://www.gnu.org/software/coreutils/")))
|
(home-page "http://www.gnu.org/software/coreutils/")))
|
||||||
|
|
||||||
(define-public coreutils-light
|
(define-public coreutils-minimal
|
||||||
;; Coreutils without its optional dependencies.
|
;; Coreutils without its optional dependencies.
|
||||||
(package
|
(package
|
||||||
(inherit coreutils)
|
(inherit coreutils)
|
||||||
(name "coreutils-light")
|
(name "coreutils-minimal")
|
||||||
(outputs '("out"))
|
(outputs '("out"))
|
||||||
(inputs '())))
|
(inputs '())))
|
||||||
|
|
||||||
|
|
|
@ -734,7 +734,7 @@ (define %boot5-inputs
|
||||||
|
|
||||||
;; Grep's test suite uses 'timeout' from Coreutils to execute command,
|
;; Grep's test suite uses 'timeout' from Coreutils to execute command,
|
||||||
;; and yet these commands need to see the valid 'LOCPATH'.
|
;; and yet these commands need to see the valid 'LOCPATH'.
|
||||||
("coreutils" ,(new-libc-package coreutils-light))
|
("coreutils" ,(new-libc-package coreutils-minimal))
|
||||||
|
|
||||||
;; We just wrap the remaining binaries (tar, gzip, xz, etc.) so that
|
;; We just wrap the remaining binaries (tar, gzip, xz, etc.) so that
|
||||||
;; they ignore 'LOCPATH' (if they did not, they would be hit by an
|
;; they ignore 'LOCPATH' (if they did not, they would be hit by an
|
||||||
|
|
Loading…
Reference in a new issue