summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-08-21 18:23:51 +0200
committerLudovic Courtès <ludo@gnu.org>2012-08-21 18:23:51 +0200
commit9350da0dac07cb6b2863e2c9cb366d3f2c538747 (patch)
treed0fc5030b1f5eda5b138f3ee6ebcddacaace8811
parentab77686565478e9e66fd1cf0b3f73d08843af04b (diff)
downloadguix-patches-9350da0dac07cb6b2863e2c9cb366d3f2c538747.tar
guix-patches-9350da0dac07cb6b2863e2c9cb366d3f2c538747.tar.gz
distro: Add GNU Bash.
* distro/base.scm (bash): New variable.
-rw-r--r--distro/base.scm49
1 files changed, 49 insertions, 0 deletions
diff --git a/distro/base.scm b/distro/base.scm
index 1a1fe76281..95f6e898fd 100644
--- a/distro/base.scm
+++ b/distro/base.scm
@@ -390,6 +390,55 @@ without Readline in applications which desire its capabilities.")
(license "GPLv3+")
(home-page "http://savannah.gnu.org/projects/readline/")))
+(define-public bash
+ (let ((cppflags (string-join '("-DSYS_BASHRC='\"/etc/bashrc\"'"
+ "-DSYS_BASH_LOGOUT='\"/etc/bash_logout\"'"
+ "-DDEFAULT_PATH_VALUE='\"/no-such-path\"'"
+ "-DSTANDARD_UTILS_PATH='\"/no-such-path\"'"
+ "-DNON_INTERACTIVE_LOGIN_SHELLS"
+ "-DSSH_SOURCE_BASHRC")
+ " ")))
+ (package
+ (name "bash")
+ (version "4.2")
+ (source (origin
+ (method http-fetch)
+ (uri (string-append
+ "http://ftp.gnu.org/gnu/bash/bash-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1n5kbblp5ykbz5q8aq88lsif2z0gnvddg9babk33024wxiwi2ym2"))))
+ (build-system gnu-build-system)
+ (inputs `(("readline" ,readline))) ; TODO: add texinfo
+ (arguments
+ `(#:configure-flags '("--with-installed-readline"
+ ,(string-append "CPPFLAGS=" cppflags))
+
+ ;; XXX: The tests have a lot of hard-coded paths, so disable them
+ ;; for now.
+ #:tests? #f
+
+ #:phases
+ (alist-cons-after 'install 'post-install
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Add a `bash' -> `sh' link.
+ (let ((out (assoc-ref outputs "out")))
+ (with-directory-excursion
+ (string-append out "/bin")
+ (symlink "bash" "sh"))))
+ %standard-phases)))
+ (description "GNU Bourne-Again Shell")
+ (long-description
+ "Bash is the shell, or command language interpreter, that will appear in
+the GNU operating system. Bash is an sh-compatible shell that incorporates
+useful features from the Korn shell (ksh) and C shell (csh). It is intended
+to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard. It
+offers functional improvements over sh for both programming and interactive
+use. In addition, most sh scripts can be run by Bash without
+modification.")
+ (license "GPLv3+")
+ (home-page "http://www.gnu.org/software/bash/"))))
+
(define-public libtool
(package
(name "libtool")