From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: 01/02: gnu: Add itpp. Date: Mon, 20 Mar 2017 14:05:11 +0300 Message-ID: <87tw6o43a0.fsf@gmail.com> References: <20170318093207.31474.12254@vcs0.savannah.gnu.org> <20170318093208.C125820945@vcs0.savannah.gnu.org> <878to1571s.fsf@netris.org> <20170320060302.GB19992@jocasta.intra> <20170320061839.GA4858@jasmine> <20170320063811.GB20517@jocasta.intra> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cpv7l-0000UO-KP for guix-devel@gnu.org; Mon, 20 Mar 2017 07:05:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cpv7k-0001vv-R8 for guix-devel@gnu.org; Mon, 20 Mar 2017 07:05:17 -0400 In-Reply-To: <20170320063811.GB20517@jocasta.intra> (John Darrington's message of "Mon, 20 Mar 2017 07:38:11 +0100") 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" To: John Darrington Cc: guix-devel@gnu.org, John Darrington John Darrington (2017-03-20 07:38 +0100) wrote: > On Mon, Mar 20, 2017 at 02:18:39AM -0400, Leo Famulari wrote: > On Mon, Mar 20, 2017 at 07:03:03AM +0100, John Darrington wrote: > > > + (source (origin > > > + (method url-fetch) > > > + (uri (string-append "mirror://sourceforge/itpp/itpp/" > > > + version "/itpp-" > > > + version ".tar.gz")) > > > + (sha256 > > > + (base32 > > > + "14ddy2xnb6sgp4hiax9v5sv4pr4l4dd4ps76nfha3nrpr1ikhcqm")))) > > (sha256) should be indented from (origin). > > Ahh. You are right (of course). Emacs must have missed that one - perhaps it'll > do a better job now I have the plugin installed. You don't need any additional "plugins" for this, as Emacs couldn't miss it! To check it, run "emacs -Q", paste this: (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/itpp/itpp/" version "/itpp-" version ".tar.gz")) (sha256 (base32 "14ddy2xnb6sgp4hiax9v5sv4pr4l4dd4ps76nfha3nrpr1ikhcqm")))) to some buffer, run "M-x scheme-mode" there, move the point to the beginning of this sexp and press "C-M-q" ("indent-sexp" command). And you'll see that (sha256) is at the same column as (origin). -- Alex