From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] gnu: Add a2ps, trueprint, enscript, and source-highlight Date: Sat, 08 Mar 2014 00:31:34 +0100 Message-ID: <87siqtd1rd.fsf@gnu.org> References: <8738ivgjk0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35923) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WM4Ez-0004ZL-9g for guix-devel@gnu.org; Fri, 07 Mar 2014 18:31:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WM4Eq-00052E-TH for guix-devel@gnu.org; Fri, 07 Mar 2014 18:31:45 -0500 Received: from hera.aquilenet.fr ([2a01:474::1]:52605) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WM4Eq-000527-MM for guix-devel@gnu.org; Fri, 07 Mar 2014 18:31:36 -0500 In-Reply-To: <8738ivgjk0.fsf@gmail.com> (Eric Bavier's message of "Thu, 06 Mar 2014 14:26:39 -0600") 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: Eric Bavier Cc: guix-devel@gnu.org Eric Bavier skribis: > +(define-public source-highlight > + (package > + (name "source-highlight") > + (version "3.1.7") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "mirror://gnu/src-highlite/source-highlight-" > + version ".tar.gz")) > + (sha256 > + (base32 > + "1s49ld8cnpzhhwq0r7s0sfm3cg3nhhm0wla27lwraifrrl3y1cp1")) > + (patches > + (list (search-patch > + ;; Patch submitted as Savannah item #41786 > + "source-highlight-regexrange-test.patch"))))) > + (build-system gnu-build-system) > + ;; The ctags that comes with emacs does not support the --excmd opti= ons, > + ;; so can't be used > + (inputs > + `(("boost" ,boost-1.54))) I just realized that =E2=80=98boost-1.54=E2=80=99 is unbound. Is that requ= ired, or does that work with 1.55 (aka. =E2=80=98boost=E2=80=99)? TIA, Ludo=E2=80=99.