From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: Add fish. Date: Thu, 10 Jul 2014 08:09:30 -0400 Message-ID: <87a98h1klh.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55430) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5DAR-0003t1-Iu for guix-devel@gnu.org; Thu, 10 Jul 2014 08:09:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X5DAM-00089L-3f for guix-devel@gnu.org; Thu, 10 Jul 2014 08:09:39 -0400 Received: from na3sys009aog138.obsmtp.com ([74.125.149.19]:38870) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5DAL-00089F-SD for guix-devel@gnu.org; Thu, 10 Jul 2014 08:09:34 -0400 Received: by mail-qc0-f177.google.com with SMTP id r5so7552885qcx.22 for ; Thu, 10 Jul 2014 05:09:32 -0700 (PDT) Received: from izanagi (209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com. [209.6.40.86]) by mx.google.com with ESMTPSA id l5sm13144039qaz.33.2014.07.10.05.09.31 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 10 Jul 2014 05:09:31 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This patch adds fish, the friendly interactive shell. --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-fish.patch Content-Transfer-Encoding: quoted-printable >From d050978c818408e845732165c37666562ba04fba Mon Sep 17 00:00:00 2001 From: David Thompson Date: Thu, 10 Jul 2014 08:07:00 -0400 Subject: [PATCH] gnu: Add fish. * gnu/packages/fish.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. --- gnu-system.am | 1 + gnu/packages/fish.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 gnu/packages/fish.scm diff --git a/gnu-system.am b/gnu-system.am index e25c922..a1a5bda 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -76,6 +76,7 @@ GNU_SYSTEM_MODULES =3D \ gnu/packages/elf.scm \ gnu/packages/emacs.scm \ gnu/packages/file.scm \ + gnu/packages/fish.scm \ gnu/packages/flex.scm \ gnu/packages/fltk.scm \ gnu/packages/fonts.scm \ diff --git a/gnu/packages/fish.scm b/gnu/packages/fish.scm new file mode 100644 index 0000000..6868b24 --- /dev/null +++ b/gnu/packages/fish.scm @@ -0,0 +1,46 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2014 David Thompson +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages fish) + #:use-module (guix licenses) + #:use-module (gnu packages ncurses) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix utils) + #:use-module (guix build-system gnu)) + +(define-public fish + (package + (name "fish") + (version "2.1.0") + (source (origin + (method url-fetch) + (uri (string-append "http://fishshell.com/files/" + version "/fish-" version ".tar.gz")) + (sha256 + (base32 + "0i7h3hx8iszli3d4kphw79sz9m07f2lc2c9hr9smdps5s7wpllmg")))) + (build-system gnu-build-system) + (inputs + `(("ncurses" ,ncurses))) + (arguments + '(#:tests? #f)) ; no check target + (synopsis "The friendly interactive shell") + (description "Fish is a smart and user-friendly command line shell.") + (home-page "http://fishshell.com/") + (license gpl2))) --=20 2.0.0 --=-=-= Content-Type: text/plain -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate --=-=-=--