From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marco van Zwetselaar Subject: Passing substitute-urls via GUIX_BUILD_OPTIONS Date: Mon, 12 Feb 2018 13:53:49 +0300 Message-ID: <8fc2157c-16e0-c778-c923-33539ef32aa9@zwets.com> 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]:44232) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1elBkG-0000nO-JR for guix-devel@gnu.org; Mon, 12 Feb 2018 05:54:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1elBkB-0004wi-LR for guix-devel@gnu.org; Mon, 12 Feb 2018 05:54:00 -0500 Received: from mail-wm0-x233.google.com ([2a00:1450:400c:c09::233]:50995) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1elBkB-0004vC-EC for guix-devel@gnu.org; Mon, 12 Feb 2018 05:53:55 -0500 Received: by mail-wm0-x233.google.com with SMTP id f71so8778956wmf.0 for ; Mon, 12 Feb 2018 02:53:55 -0800 (PST) Received: from [10.103.0.100] ([154.126.240.134]) by smtp.gmail.com with ESMTPSA id e56sm4979511edb.75.2018.02.12.02.53.52 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 12 Feb 2018 02:53:52 -0800 (PST) Content-Language: en-GB 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" To: guix-devel@gnu.org All, Is there a magic escape to allow passing --substitute-urls via GUIX_BUILD_OPTIONS? $ GUIX_BUILD_OPTIONS=3D"--substitute-urls=3Dhttp://server1 https://mirror.hydra.gnu.org" guix package -I guix package: error: https://mirror.hydra.gnu.org: extraneous argument $ GUIX_BUILD_OPTIONS=3D"--substitute-urls=3D'http://server1 https://mirror.hydra.gnu.org'" guix package -I guix package: error: https://mirror.hydra.gnu.org': extraneous argument $ GUIX_BUILD_OPTIONS=3D'--substitute-urls=3D"http://server1 https://mirror.hydra.gnu.org"' guix package -I guix package: error: https://mirror.hydra.gnu.org": extraneous argument $ ... other attempts involving apostrophes, quotes, and backslashes ... I can't seem to find the incantation that works. Cheers, Marco