From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53771) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dEZu5-0000Fm-DT for guix-patches@gnu.org; Sat, 27 May 2017 07:29:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dEZu2-0000i7-6a for guix-patches@gnu.org; Sat, 27 May 2017 07:29:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37270) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dEZu2-0000i3-3I for guix-patches@gnu.org; Sat, 27 May 2017 07:29:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dEZu1-0006xT-UE for guix-patches@gnu.org; Sat, 27 May 2017 07:29:01 -0400 Subject: bug#27099: [PATCH: core-updates] gnu: packages: flex@2.6.4: add missing 'lzip' input Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dEZtD-0000By-T5 for guix-patches@gnu.org; Sat, 27 May 2017 07:28:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dEZtA-0008Sm-Pp for guix-patches@gnu.org; Sat, 27 May 2017 07:28:11 -0400 Received: from smtp53.i.mail.ru ([94.100.177.113]:36472) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dEZtA-0008NS-Dv for guix-patches@gnu.org; Sat, 27 May 2017 07:28:08 -0400 From: Sergei Trofimovich Date: Sat, 27 May 2017 12:27:47 +0100 Message-Id: <20170527112747.26940-1-slyfox@inbox.ru> 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: 27099@debbugs.gnu.org * gnu/packages/flex.scm(flex): add lzip to native-inputs --- gnu/packages/flex.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/flex.scm b/gnu/packages/flex.scm index b68b01e94..70707d77d 100644 --- a/gnu/packages/flex.scm +++ b/gnu/packages/flex.scm @@ -23,6 +23,7 @@ #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages) + #:use-module (gnu packages compression) #:use-module (gnu packages m4) #:use-module (gnu packages man) #:use-module (gnu packages bison) @@ -67,6 +68,7 @@ ;; m4 is not present in PATH when cross-building (native-inputs `(("help2man" ,help2man) + ("lzip" ,lzip) ("m4" ,m4))) (propagated-inputs `(("m4" ,m4))) (home-page "https://github.com/westes/flex") -- 2.13.0