From mboxrd@z Thu Jan 1 00:00:00 1970 From: zimoun Subject: Re: Parallel downloads Date: Tue, 12 Nov 2019 17:48:16 +0100 Message-ID: References: <87r22dp0mv.fsf@gnu.org> <811C4D1E-A2D9-4661-9F10-C068FBE2CA80@asu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:55940) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iUZLD-0008Gr-Ip for guix-devel@gnu.org; Tue, 12 Nov 2019 11:48:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iUZLC-0006Y0-LF for guix-devel@gnu.org; Tue, 12 Nov 2019 11:48:31 -0500 In-Reply-To: <811C4D1E-A2D9-4661-9F10-C068FBE2CA80@asu.edu> 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: John Soo Cc: Guix Devel Hi, It is not related with parallel download but on old machines "guix build --no-substitutes" can eat a lot of resources; for example if the package has a lot of dependencies. I would like to be able to list which dependencies I want to build and which I want to substitute. Maybe it is already possible. Currently, I am doing: guix build `guix show PKG | recsel -R dependencies` guix build PKG --no-substitutes What do you think? All the best, simon