From mboxrd@z Thu Jan 1 00:00:00 1970 From: Federico Beffa Subject: Re: [PATCH] gnu: Add clojure. Date: Sat, 27 Feb 2016 09:27:27 +0100 Message-ID: References: <87h9gvn0rr.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42248) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZaDo-0003Pr-UP for guix-devel@gnu.org; Sat, 27 Feb 2016 03:27:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZaDo-0007ny-66 for guix-devel@gnu.org; Sat, 27 Feb 2016 03:27:28 -0500 Received: from mail-vk0-x22b.google.com ([2607:f8b0:400c:c05::22b]:36347) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZaDn-0007nu-Tg for guix-devel@gnu.org; Sat, 27 Feb 2016 03:27:28 -0500 Received: by mail-vk0-x22b.google.com with SMTP id c3so96533773vkb.3 for ; Sat, 27 Feb 2016 00:27:27 -0800 (PST) In-Reply-To: <87h9gvn0rr.fsf@gmail.com> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Alex Vong Cc: Guix-devel Alex Vong writes: > + (every (lambda (src) > + (begin (unpack src) > + (copy src))) > + '("data-generators-src" "java-classpath-src" > + "test-check-src" "test-generative-src" > + "tools-namespace-src" "tools-reader-src"))))) I missed another small detail: 'begin' in the body of 'lambda' is implicit. You don't need to add it explicitly. Looking forward to play with it. Regards, Fede