From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57111) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gDbel-00054g-RB for guix-patches@gnu.org; Fri, 19 Oct 2018 16:46:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gDbek-00007t-W6 for guix-patches@gnu.org; Fri, 19 Oct 2018 16:46:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55559) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gDbek-00007l-QT for guix-patches@gnu.org; Fri, 19 Oct 2018 16:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gDbek-0003Px-MN for guix-patches@gnu.org; Fri, 19 Oct 2018 16:46:02 -0400 Subject: bug#33058: [PATCH] gnu: Add i3blocks. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87pnwa8eow.fsf@gmail.com> Date: Fri, 19 Oct 2018 22:45:47 +0200 In-Reply-To: <87pnwa8eow.fsf@gmail.com> (Meiyo Peng's message of "Tue, 16 Oct 2018 16:43:11 +0800") Message-ID: <87mur9ekck.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Meiyo Peng Cc: 33058-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Meiyo, Meiyo Peng skribis: > I created a package for i3blocks. This is my first guix package, so > forgive me if i did anything wrong. It looks great to me! >>>From 6116bec4d60175e2d1fb12da75c803962ddb3ec7 Mon Sep 17 00:00:00 2001 > From: Meiyo Peng > Date: Tue, 16 Oct 2018 15:16:43 +0800 > Subject: [PATCH] gnu: Add i3blocks. > > * gnu/packages/wm.scm (i3blocks): New variable. I=E2=80=99ve applied it with the minor changes below: leave the default val= ue of #:tests? (it doesn=E2=80=99t hurt), and return #t in the build phase. That= =E2=80=99s #it! Thank you for the patch, and welcome! :-) Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index d5e191770..68d497e95 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -260,8 +260,8 @@ developers.") (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (man1 (string-append out "/share/man/man1"))) - (install-file "docs/i3blocks.1" man1))))) - #:tests? #f)) + (install-file "docs/i3blocks.1" man1) + #t)))))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) --=-=-=--