From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: Re: Newt and Guix pull failing Date: Sun, 21 Apr 2019 14:39:21 +0200 Message-ID: <87lg038rd2.fsf@gnu.org> References: <120dd76cc594248a2f2db945c8ea9753@posteo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:50192) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIBki-0006mU-WA for help-guix@gnu.org; Sun, 21 Apr 2019 08:39:26 -0400 In-Reply-To: <120dd76cc594248a2f2db945c8ea9753@posteo.net> (brettg@posteo.net's message of "Sat, 20 Apr 2019 21:37:17 +0200") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: brettg@posteo.net Cc: help-guix Hello, brettg@posteo.net skribis: > I reference the newt module in this file of my channel > https://git.sr.ht/~brettgilio/guix-system/tree/master/guile-modules/gscal= e/screen.scm > > However, when I `guix pull` it fails to build citing that there is no > code available for that module. I have guile-newt installed system > wide, and to my local profile manifest, but neither of those fix the > issue. When Guile and Guile-Newt are in the same profile, the GUILE_LOAD_PATH and GUILE_LOAD_COMPILED_PATH are automatically set appropriately: guix environment -C --ad-hoc guile guile-newt -- guile -c '(use-modules (= newt))' # success So it looks like GUILE_LOAD_PATH may be unset or wrong in your case. Ludo=E2=80=99.