From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42173) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hb3iD-0006YR-V2 for guix-patches@gnu.org; Wed, 12 Jun 2019 09:54:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hb3Zj-0002ks-0y for guix-patches@gnu.org; Wed, 12 Jun 2019 09:46:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47365) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hb3Zh-0002jk-QR for guix-patches@gnu.org; Wed, 12 Jun 2019 09:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hb3Zh-0001cB-L0 for guix-patches@gnu.org; Wed, 12 Jun 2019 09:46:01 -0400 Subject: [bug#36162] [PATCH 0/4] Add 'remote-eval' Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190610210853.5709-1-ludo@gnu.org> <87ef40c9f7.fsf@sdf.lonestar.org> Date: Wed, 12 Jun 2019 15:45:35 +0200 In-Reply-To: <87ef40c9f7.fsf@sdf.lonestar.org> (Jakob L. Kreuze's message of "Tue, 11 Jun 2019 13:35:08 -0400") Message-ID: <87zhmmvrwg.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: "Jakob L. Kreuze" Cc: 36162@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable zerodaysfordays@sdf.lonestar.org (Jakob L. Kreuze) skribis: > zerodaysfordays@sdf.lonestar.org (Jakob L. Kreuze) writes: > >> Wow, this is great! It seems like this patch series is implementing a >> number of things I'd been wishing I could just import from some other >> Guix module. I'm signing off for the night, but I'll apply this tomorrow >> and give you some feedback. > > It seems this breaks 'operating-system-derivation'. [...] > In guix/derivations.scm: > 597:28 0 (derivation->output-path #f _) Oops! The patch below fixes it. Let me know if you find other issues. Thanks for testing! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/guix/gexp.scm b/guix/gexp.scm index 38f64db7f1..ab29c2494e 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -720,7 +720,7 @@ derivations--e.g., code evaluated for its side effects." #:system system #:module-path module-path #:extensions extensions - #:guile guile-for-build + #:guile guile #:pre-load-modules? pre-load-modules? #:deprecation-warnings @@ -746,7 +746,7 @@ derivations--e.g., code evaluated for its side effects." '()) ,@(map gexp-input exts) ,@inputs) - guile-for-build + guile load-path load-compiled-path))))) --=-=-=--