From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59982) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXAvC-0007LO-Qb for guix-patches@gnu.org; Mon, 17 Jul 2017 14:39:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXAv8-0001E7-LL for guix-patches@gnu.org; Mon, 17 Jul 2017 14:39:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42109) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dXAv8-0001Dq-HT for guix-patches@gnu.org; Mon, 17 Jul 2017 14:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dXAv8-0000QD-B5 for guix-patches@gnu.org; Mon, 17 Jul 2017 14:39:02 -0400 Subject: [bug#27737] [PATCH] gnu: leafpad: Use glib-or-gtk build-system. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59859) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXAuq-0006a9-4u for guix-patches@gnu.org; Mon, 17 Jul 2017 14:38:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXAum-0000Z2-0W for guix-patches@gnu.org; Mon, 17 Jul 2017 14:38:44 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:55416) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dXAul-0000Xy-Pb for guix-patches@gnu.org; Mon, 17 Jul 2017 14:38:39 -0400 From: Danny Milosavljevic Date: Mon, 17 Jul 2017 20:37:31 +0200 Message-Id: <20170717183731.4817-1-dannym@scratchpost.org> 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: 27737@debbugs.gnu.org * gnu/packages/text-editors.scm (leafpad): Use glib-or-gtk build-system. --- gnu/packages/text-editors.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 98df48119..56049eb51 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -26,6 +26,7 @@ #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system gnu) + #:use-module (guix build-system glib-or-gtk) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (gnu packages assembly) @@ -178,7 +179,7 @@ bindings and many of the powerful features of GNU Emacs.") (sha256 (base32 "0b0az2wvqgvam7w0ns1j8xp2llslm1rx6h7zcsy06a7j0yp257cm")))) - (build-system gnu-build-system) + (build-system glib-or-gtk-build-system) (native-inputs `(("intltool" ,intltool) ("pkg-config" ,pkg-config)))