From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60002) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d4Cs1-0000CH-PZ for guix-patches@gnu.org; Fri, 28 Apr 2017 16:52:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d4Cry-0008Jc-KI for guix-patches@gnu.org; Fri, 28 Apr 2017 16:52:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46918) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d4Cry-0008JU-GT for guix-patches@gnu.org; Fri, 28 Apr 2017 16:52:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d4Cry-0001pT-7V for guix-patches@gnu.org; Fri, 28 Apr 2017 16:52:02 -0400 Subject: bug#26667: Add: guix-fish 0.1.0 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59660) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d4Cqh-0007bt-QR for guix-patches@gnu.org; Fri, 28 Apr 2017 16:50:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d4Cqe-0007qa-L8 for guix-patches@gnu.org; Fri, 28 Apr 2017 16:50:43 -0400 Received: from 93-95-228-241.1984.is ([93.95.228.241]:32900 helo=sharknado9001.pragmatique.xyz) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d4Cqe-0007q2-8X for guix-patches@gnu.org; Fri, 28 Apr 2017 16:50:40 -0400 Received: by sharknado9001.pragmatique.xyz (OpenSMTPD) with ESMTPSA id fe1d9578 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Fri, 28 Apr 2017 20:50:26 +0000 (UTC) Date: Fri, 28 Apr 2017 20:50:23 +0000 From: ng0 Message-ID: <20170428205023.zqdhfjubi7luzvpy@abyayala> References: <20170426120416.olmkynnbjh52oaoy@abyayala> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="2u3podrsinsubogr" Content-Disposition: inline In-Reply-To: <20170426120416.olmkynnbjh52oaoy@abyayala> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26667@debbugs.gnu.org --2u3podrsinsubogr Content-Type: text/plain; charset=utf-8 Content-Disposition: inline To safe some lines of code in the Guix package, I've added some files in 0.1.1, just released. ng0 transcribed 0.5K bytes: > Hi, > > it's the little things which sometimes count: > > I have just released version 0.1.0 of fish-guix. > > This happened in between moving everything relevant to > the page I've decided on for now, so just ignore most > of the content and just look at > https://pragmatique.noblogs.org/software/fish-guix/ or > https://pragmatique.noblogs.org/software/fish-guix/downloads/ > > The appended patch adds the package to Guix. > -- > PGP and more: https://people.pragmatique.xyz/ng0/ > > > -- PGP and more: https://people.pragmatique.xyz/ng0/ --2u3podrsinsubogr Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-fish-guix.patch" Content-Transfer-Encoding: quoted-printable =46rom 87adb8e9ee79c9397e2ad956b66cf7a628b3deac Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Wed, 26 Apr 2017 11:10:01 +0000 Subject: [PATCH] gnu: Add fish-guix. * gnu/packages/shells.scm (fish-guix): New variable. --- gnu/packages/shells.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 012f272ca..5f57619e0 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -6,7 +6,7 @@ ;;; Copyright =C2=A9 2016 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2016 Stefan Reich=C3=B6r ;;; Copyright =C2=A9 2017 Ricardo Wurmus -;;; Copyright =C2=A9 2017 ng0 +;;; Copyright =C2=A9 2017 ng0 ;;; Copyright =C2=A9 2017 Leo Famulari ;;; ;;; This file is part of GNU Guix. @@ -147,6 +147,32 @@ highlighting.") (home-page "https://fishshell.com/") (license gpl2))) =20 +(define-public fish-guix + (package + (name "fish-guix") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://dist.pragmatique.xyz/fish-guix/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0xi0j9lvzh43lrj82gz52n2cjln0i0pgayngrg4hy5w4449biy0z")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No checks. + #:make-flags (list + (string-append "PREFIX=3D" %output)) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) ; No configure script. + (home-page "https://pragmatique.noblogs.org/software/fish-guix/downloa= ds/") + (synopsis "Fish completions for Guix") + (description + "Fish-guix provides completions for Guix for users of the fish shell.= ") + (license public-domain))) + (define-public rc (package (name "rc") --=20 2.12.2 --2u3podrsinsubogr--