diff options
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/fish.scm | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/gnu/packages/fish.scm b/gnu/packages/fish.scm new file mode 100644 index 00000000000..5833e7b75b2 --- /dev/null +++ b/gnu/packages/fish.scm | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | ||
| 2 | ;;; Copyright © 2014 David Thompson <davet@gnu.org> | ||
| 3 | ;;; | ||
| 4 | ;;; This file is part of GNU Guix. | ||
| 5 | ;;; | ||
| 6 | ;;; GNU Guix is free software; you can redistribute it and/or modify it | ||
| 7 | ;;; under the terms of the GNU General Public License as published by | ||
| 8 | ;;; the Free Software Foundation; either version 3 of the License, or (at | ||
| 9 | ;;; your option) any later version. | ||
| 10 | ;;; | ||
| 11 | ;;; GNU Guix is distributed in the hope that it will be useful, but | ||
| 12 | ;;; WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | ;;; GNU General Public License for more details. | ||
| 15 | ;;; | ||
| 16 | ;;; You should have received a copy of the GNU General Public License | ||
| 17 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | |||
| 19 | (define-module (gnu packages fish) | ||
| 20 | #:use-module (guix licenses) | ||
| 21 | #:use-module (gnu packages doxygen) | ||
| 22 | #:use-module (gnu packages ncurses) | ||
| 23 | #:use-module (guix packages) | ||
| 24 | #:use-module (guix download) | ||
| 25 | #:use-module (guix utils) | ||
| 26 | #:use-module (guix build-system gnu)) | ||
| 27 | |||
| 28 | (define-public fish | ||
| 29 | (package | ||
| 30 | (name "fish") | ||
| 31 | (version "2.1.0") | ||
| 32 | (source (origin | ||
| 33 | (method url-fetch) | ||
| 34 | (uri (string-append "http://fishshell.com/files/" | ||
| 35 | version "/fish-" version ".tar.gz")) | ||
| 36 | (sha256 | ||
| 37 | (base32 | ||
| 38 | "0i7h3hx8iszli3d4kphw79sz9m07f2lc2c9hr9smdps5s7wpllmg")))) | ||
| 39 | (build-system gnu-build-system) | ||
| 40 | (native-inputs | ||
| 41 | `(("doxygen" ,doxygen))) | ||
| 42 | (inputs | ||
| 43 | `(("ncurses" ,ncurses))) | ||
| 44 | (arguments | ||
| 45 | '(#:tests? #f)) ; no check target | ||
| 46 | (synopsis "The friendly interactive shell") | ||
| 47 | (description | ||
| 48 | "Fish (friendly interactive shell) is a shell focused on interactive use, | ||
| 49 | discoverability, and friendliness. Fish has very user-friendly and powerful | ||
| 50 | tab-completion, including descriptions of every completion, completion of | ||
| 51 | strings with wildcards, and many completions for specific commands. It also | ||
| 52 | has extensive and discoverable help. A special help command gives access to | ||
| 53 | all the fish documentation in your web browser. Other features include smart | ||
| 54 | terminal handling based on terminfo, an easy to search history, and syntax | ||
| 55 | highlighting. ") | ||
| 56 | (home-page "http://fishshell.com/") | ||
| 57 | (license gpl2))) | ||
