From 928d62f225432961c050cdc5cd1f04cf0e509c19 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 3 Mar 2015 22:58:06 +0100 Subject: gnu: Add bash-completion. * gnu/packages/bash.scm (bash-completion): New variable. --- gnu/packages/bash.scm | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'gnu/packages/bash.scm') diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index f565c1a876..c669194c2e 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014 Ludovic Courtès +;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès ;;; Copyright © 2014, 2015 Mark H Weaver ;;; ;;; This file is part of GNU Guix. @@ -206,3 +206,23 @@ without modification.") ,@(if (%current-target-system) '("bash_cv_job_control_missing=no") '())))))))) + +(define-public bash-completion + (package + (name "bash-completion") + (version "2.1") + (source (origin + (method url-fetch) + (uri (string-append + "http://bash-completion.alioth.debian.org/files/" + "bash-completion-" version ".tar.bz2")) + (sha256 + (base32 + "0kxf8s5bw7y50x0ksb77d3kv0dwadixhybl818w27y6mlw26hq1b")))) + (build-system gnu-build-system) + (synopsis "Bash completions for common commands") + (description + "This package provides extensions that allow Bash to provide adapted +completion for many common commands.") + (home-page "http://bash-completion.alioth.debian.org/") + (license gpl2+))) -- cgit v1.2.3