From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50445) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dGovm-0004Ab-Uc for guix-patches@gnu.org; Fri, 02 Jun 2017 11:56:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dGovi-0005Ux-0x for guix-patches@gnu.org; Fri, 02 Jun 2017 11:56:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49075) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dGovh-0005Ut-TX for guix-patches@gnu.org; Fri, 02 Jun 2017 11:56:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dGovh-0008H4-Nh for guix-patches@gnu.org; Fri, 02 Jun 2017 11:56:01 -0400 Subject: bug#27195: Add search-paths for coq libraries Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: Date: Fri, 02 Jun 2017 17:55:04 +0200 In-Reply-To: (julien lepiller's message of "Fri, 02 Jun 2017 10:11:23 +0200") Message-ID: <87d1am5qqv.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: julien lepiller Cc: 27195@debbugs.gnu.org julien lepiller skribis: > From 7486a169bdfa0d4c5f287405b6d5fccf9dbcd1fa Mon Sep 17 00:00:00 2001 > From: Julien Lepiller > Date: Thu, 1 Jun 2017 17:52:12 +0200 > Subject: [PATCH] gnu: coq: Add search-paths for coq libraries. > > * gnu/packages/ocaml.scm (coq)[native-search-paths]: New field. > --- > gnu/packages/ocaml.scm | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm > index 863e367a5..a3475e2b9 100644 > --- a/gnu/packages/ocaml.scm > +++ b/gnu/packages/ocaml.scm > @@ -448,6 +448,10 @@ written in Objective Caml.") > (sha256 > (base32 > "0wyywia0darak2zmc5v0ra9rn0b9whwdfiahralm8v5za499s8w3"))= )) > + (native-search-paths > + (list (search-path-specification > + (variable "COQPATH") > + (files (list "lib/coq" "lib/coq/user-contrib"))))) Is =E2=80=9Clib/coq/user-contrib=E2=80=9D a widespread convention? Looks u= nusual. Apart from that LGTM, thanks! Ludo=E2=80=99.