summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-03-03 22:58:06 +0100
committerLudovic Courtès <ludo@gnu.org>2015-03-03 22:58:46 +0100
commit928d62f225432961c050cdc5cd1f04cf0e509c19 (patch)
tree2150f2db05b38141238758122ed46155c2f2fe0a /gnu
parent23c0e74375b3ee274068f850208feaaa3d28b9d6 (diff)
gnu: Add bash-completion.
* gnu/packages/bash.scm (bash-completion): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bash.scm22
1 files changed, 21 insertions, 1 deletions
diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm
index f565c1a876c..c669194c2e6 100644
--- a/gnu/packages/bash.scm
+++ b/gnu/packages/bash.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> 3;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
4;;; 4;;;
5;;; This file is part of GNU Guix. 5;;; This file is part of GNU Guix.
@@ -206,3 +206,23 @@ without modification.")
206 ,@(if (%current-target-system) 206 ,@(if (%current-target-system)
207 '("bash_cv_job_control_missing=no") 207 '("bash_cv_job_control_missing=no")
208 '())))))))) 208 '()))))))))
209
210(define-public bash-completion
211 (package
212 (name "bash-completion")
213 (version "2.1")
214 (source (origin
215 (method url-fetch)
216 (uri (string-append
217 "http://bash-completion.alioth.debian.org/files/"
218 "bash-completion-" version ".tar.bz2"))
219 (sha256
220 (base32
221 "0kxf8s5bw7y50x0ksb77d3kv0dwadixhybl818w27y6mlw26hq1b"))))
222 (build-system gnu-build-system)
223 (synopsis "Bash completions for common commands")
224 (description
225 "This package provides extensions that allow Bash to provide adapted
226completion for many common commands.")
227 (home-page "http://bash-completion.alioth.debian.org/")
228 (license gpl2+)))