From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Bags Date: Thu, 02 Oct 2014 14:33:53 +0200 Message-ID: <87tx3m4pn2.fsf@gnu.org> 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]:35220) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XZfa6-0006oK-N1 for Guix-devel@gnu.org; Thu, 02 Oct 2014 08:34:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XZfZu-0003Bv-Sk for Guix-devel@gnu.org; Thu, 02 Oct 2014 08:34:02 -0400 Received: from hera.aquilenet.fr ([2a01:474::1]:45016) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XZfZu-0003Bm-Mn for Guix-devel@gnu.org; Thu, 02 Oct 2014 08:33:50 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 58A8B3BEE for ; Thu, 2 Oct 2014 14:33:49 +0200 (CEST) Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6kH7ZNQWJHXR for ; Thu, 2 Oct 2014 14:33:49 +0200 (CEST) Received: from pluto (pluto.bordeaux.inria.fr [193.50.110.57]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 1DDAA11B5 for ; Thu, 2 Oct 2014 14:33:49 +0200 (CEST) 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: Guix-devel Hello, I=E2=80=99ve pushed a new branch, =E2=80=98wip-bags=E2=80=99, which changes= the way build systems work. Basically, it introduces an intermediate representation between packages and derivations, called =E2=80=9Cbags.=E2= =80=9D The main difference between a bag and a package is that a bag lists all the inputs of the build process, including the =E2=80=9Cimplicit inputs=E2= =80=9D added by the build system. This simplifies the code and should unlock nifty features like =E2=80=98guix environment=E2=80=99 and =E2=80=9Cgrafts=E2=80=9D (a trick for faster secur= ity updates; more on that later.) Comments welcome! Ludo=E2=80=99.