From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] Add cufflinks. Date: Wed, 16 Sep 2015 19:10:08 +0200 Message-ID: <871tdycmtr.fsf@gnu.org> References: 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]:35987) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZcGDm-00041P-1l for guix-devel@gnu.org; Wed, 16 Sep 2015 13:10:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZcGDi-0004Cn-Ln for guix-devel@gnu.org; Wed, 16 Sep 2015 13:10:13 -0400 In-Reply-To: (Ricardo Wurmus's message of "Wed, 16 Sep 2015 17:45:46 +0200") 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: Ricardo Wurmus Cc: guix-devel Ricardo Wurmus skribis: > From e8186326701df11ee4bdb22d4717cf4b8c27dd50 Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Wed, 16 Sep 2015 17:42:41 +0200 > Subject: [PATCH] gnu: Add cufflinks. > > * gnu/packages/bioinformatics.scm (boost-1.55, cufflinks): New > variables. [...] > +(define boost-1.55 > + (package (inherit boost) I would keep it next to =E2=80=98boost=E2=80=99. [...] > + (lambda* (#:key inputs #:allow-other-keys) > + ;; The includes for "eigen" are located in a subdirectory. > + (setenv "CPATH" (string-append (assoc-ref inputs "eigen") > + "/include/eigen3/" ":" > + (or (getenv "CPATH") ""))) It should be using =E2=80=98pkg-config eigen3 --cflags=E2=80=99, but pkg-co= nfig is missing. Could you check if adding pkg-config makes this hack unnecessary? Otherwise LGTM. Thanks, Ludo=E2=80=99.