[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] gnu: Add dzen.
From: |
Leo Famulari |
Subject: |
Re: [PATCH] gnu: Add dzen. |
Date: |
Thu, 2 Mar 2017 18:51:20 -0500 |
User-agent: |
Mutt/1.8.0 (2017-02-23) |
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 <address@hidden>
> 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.