From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: How to use "every"? Date: Fri, 09 Sep 2016 14:10:03 +0100 Message-ID: <87vay5qkwk.fsf@ike.i-did-not-set--mail-host-address--so-tickle-me> References: <20160909150151.495c7957@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32789) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biLZU-00074j-E9 for Guix-devel@gnu.org; Fri, 09 Sep 2016 09:10:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1biLZQ-0007Or-5b for Guix-devel@gnu.org; Fri, 09 Sep 2016 09:10:19 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:60211) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biLZN-0007Fa-TC for Guix-devel@gnu.org; Fri, 09 Sep 2016 09:10:16 -0400 In-Reply-To: <20160909150151.495c7957@scratchpost.org> 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: Danny Milosavljevic , Guix-devel Danny Milosavljevic writes: > Hi, > > how do I use "every" in a guix package declaration? > > When I add #:modules (sfri sfri-1) I get a message that guix-build is > undefined (?). I think when setting #:modules, you also have to specify the "expected" ones, i.e. it will override the defaults rather than append. So argument would be: #:modules ((srfi srfi-1) (guix build gnu-build-system) (guix build utils)) But I am pretty new to Guile and Guix, so take it with a grain of salt. HTH! Marius