gnu: bash-light: Rename to bash-minimal.
* gnu/packages/bash.scm (bash-light): Rename to ... (bash-minimal): ...this. (static-bash): Use it. * gnu/packages/make-bootstrap.scm (%bash-static): Use it.master
parent
1de0afd5a5
commit
f24931d841
|
@ -214,10 +214,10 @@ without modification.")
|
||||||
(license gpl3+)
|
(license gpl3+)
|
||||||
(home-page "http://www.gnu.org/software/bash/"))))
|
(home-page "http://www.gnu.org/software/bash/"))))
|
||||||
|
|
||||||
(define-public bash-light
|
(define-public bash-minimal
|
||||||
;; A stripped-down Bash for non-interactive use.
|
;; A stripped-down Bash for non-interactive use.
|
||||||
(package (inherit bash)
|
(package (inherit bash)
|
||||||
(name "bash-light")
|
(name "bash-minimal")
|
||||||
(inputs '()) ; no readline, no curses
|
(inputs '()) ; no readline, no curses
|
||||||
(arguments
|
(arguments
|
||||||
(let ((args `(#:modules ((guix build gnu-build-system)
|
(let ((args `(#:modules ((guix build gnu-build-system)
|
||||||
|
@ -242,7 +242,7 @@ without modification.")
|
||||||
(define-public static-bash
|
(define-public static-bash
|
||||||
;; Statically-linked Bash that contains nothing but the 'bash' binary and
|
;; Statically-linked Bash that contains nothing but the 'bash' binary and
|
||||||
;; 'sh' symlink, without any reference.
|
;; 'sh' symlink, without any reference.
|
||||||
(let ((bash (static-package bash-light)))
|
(let ((bash (static-package bash-minimal)))
|
||||||
(package
|
(package
|
||||||
(inherit bash)
|
(inherit bash)
|
||||||
(name "bash-static")
|
(name "bash-static")
|
||||||
|
|
|
@ -115,7 +115,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
||||||
#:native-inputs native-inputs))
|
#:native-inputs native-inputs))
|
||||||
|
|
||||||
(define %bash-static
|
(define %bash-static
|
||||||
(static-package bash-light))
|
(static-package bash-minimal))
|
||||||
|
|
||||||
(define %static-inputs
|
(define %static-inputs
|
||||||
;; Packages that are to be used as %BOOTSTRAP-INPUTS.
|
;; Packages that are to be used as %BOOTSTRAP-INPUTS.
|
||||||
|
|
Reference in New Issue