From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Add dzen. Date: Thu, 2 Mar 2017 18:51:20 -0500 Message-ID: <20170302235120.GA20698@jasmine> References: <20170214002828.4311f801@gmail.com> <20170214004121.GA21528@jasmine> <20170222011010.1b94f7ae@gmail.com> <20170302023401.GC23686@jasmine> <20170302023512.GA26338@jasmine> <871suftg6d.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34702) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjaVK-0004VB-Iw for guix-devel@gnu.org; Thu, 02 Mar 2017 18:51:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjaVH-0000QO-FZ for guix-devel@gnu.org; Thu, 02 Mar 2017 18:51:26 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:44809) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cjaVH-0000P9-61 for guix-devel@gnu.org; Thu, 02 Mar 2017 18:51:23 -0500 Content-Disposition: inline In-Reply-To: <871suftg6d.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" To: Mekeor Melire Cc: guix-devel@gnu.org On Fri, Mar 03, 2017 at 12:25:14AM +0100, Mekeor Melire wrote: > From d235a347a21d50902d42f161a6c840516eff9d42 Mon Sep 17 00:00:00 2001 > From: Mekeor Melire > Date: Fri, 3 Mar 2017 00:22:47 +0100 > Subject: [PATCH] gnu: Add dzen. > > * gnu/packages/xdisorg.scm (dzen): New variable. Thanks, pushed! > + ;; Use own make-flags instead of `config.mk`. > + (add-before 'build 'dont-include-config-mk > + (lambda* (#:key outputs #:allow-other-keys) > + (substitute* "Makefile" (("include config.mk") ""))))))) I also simplified this a bit and made the phase return #t. We like all build phases to return #t or to fail, but (substitute*)'s return value is unspecified, so we return #t from this sort of phase.