(define-module (gnu packages zsh) #:use-module (guix licenses) ;; #:use-module (gnu packages ncurses) ;; #:use-module (gnu packages readline) ;; #:use-module (gnu packages texinfo) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public zsh (let* ((configure-flags ``("--with-tcsetpgrp")))) (package (name "zsh") (version "5.0.2") (source (origin (method url-fetch) (uri (string-append "ftp://ftp.zsh.org/zsh/zsh.tar.bz2")) (sha256 (base32 "1s2fvv0zfpi0qg9fzhiv8ac19pwbbjd0sbsbzmll3nqa8k4yfvz9")))) (build-system gnu-build-system) (inputs `(("readline" ,readline) ("ncurses" ,ncurses) ("texinfo" ,texinfo))) (synopsis "Z Shell") (description "Zsh is a UNIX command interpreter (shell) usable as an interactive login shell and as a shell script command processor. Of the standard shells, zsh most closely resembles ksh but includes many enhancements. Zsh has command line editing, builtin spelling correction, programmable command completion, shell functions (with autoloading), a history mechanism, and a host of other features.") (license (x11-style "http://sourceforge.net/p/zsh/code/ci/master/tree/LICENCE")) (home-page "http://www.zsh.org/")))