From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53207) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9lkt-0008Bd-2V for guix-patches@gnu.org; Mon, 16 Sep 2019 03:49:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i9lkr-0001zp-WC for guix-patches@gnu.org; Mon, 16 Sep 2019 03:49:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40263) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i9lkr-0001zf-SP for guix-patches@gnu.org; Mon, 16 Sep 2019 03:49:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i9lkr-0003Q9-PH for guix-patches@gnu.org; Mon, 16 Sep 2019 03:49:01 -0400 Subject: [bug#37412] [PATCH 1/2] gnu: Add guix-data-service. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87v9tt1l0h.fsf@cbaines.net> <20190915182127.10525-1-mail@cbaines.net> Date: Mon, 16 Sep 2019 09:48:29 +0200 In-Reply-To: <20190915182127.10525-1-mail@cbaines.net> (Christopher Baines's message of "Sun, 15 Sep 2019 19:21:26 +0100") Message-ID: <87y2yofzqq.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: Christopher Baines Cc: 37412@debbugs.gnu.org Good morning, Chris! Christopher Baines skribis: > * gnu/packages/web.scm (guix-data-service): New variable. Woohoo! \o/ > + (inputs > + `(("guile" ,guile-2.2) Guile should be =E2=80=98native-inputs=E2=80=99 because we use it for its c= ompiler (which can act as a =E2=80=9Ccross-compiler=E2=80=9D with =E2=80=98--target= =E2=80=99). > + (native-search-paths > + ;; guile-git requires this to be set > + (list (search-path-specification > + (variable "GIT_SSL_CAINFO") > + (file-type 'regular) > + (separator #f) > + (files '("etc/ssl/certs/ca-certificates.crt"))))) It=E2=80=99s a bit of a workaround for , isn=E2=80=99t it? :-) What about either removing it, or adding an =E2=80=9CXXX=E2=80=9D to the co= mment? Otherwise LGTM! Ludo=E2=80=99.