guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: Add bash-completion.


From: Ludovic Courtès
Subject: 04/04: gnu: Add bash-completion.
Date: Tue, 03 Mar 2015 22:08:19 +0000

civodul pushed a commit to branch master
in repository guix.

commit 928d62f225432961c050cdc5cd1f04cf0e509c19
Author: Ludovic Courtès <address@hidden>
Date:   Tue Mar 3 22:58:06 2015 +0100

    gnu: Add bash-completion.
    
    * gnu/packages/bash.scm (bash-completion): New variable.
---
 gnu/packages/bash.scm |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm
index f565c1a..c669194 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 <address@hidden>
+;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
 ;;;
 ;;; 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+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]