From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60797) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJmhN-0007lH-7z for guix-patches@gnu.org; Wed, 01 Apr 2020 19:23:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJmhM-00013o-72 for guix-patches@gnu.org; Wed, 01 Apr 2020 19:23:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55564) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jJmhM-00013F-3B for guix-patches@gnu.org; Wed, 01 Apr 2020 19:23:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jJmhM-0003k2-0C for guix-patches@gnu.org; Wed, 01 Apr 2020 19:23:04 -0400 Subject: [bug#40383] [PATCH 5/5] gnu: nethack: Make some inputs native. Resent-Message-ID: From: Vincent Legoll Date: Thu, 2 Apr 2020 01:22:25 +0200 Message-Id: <20200401232225.27766-5-vincent.legoll@gmail.com> In-Reply-To: <20200401232225.27766-1-vincent.legoll@gmail.com> References: <20200401232225.27766-1-vincent.legoll@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 40383@debbugs.gnu.org Cc: Vincent Legoll * gnu/packages/games.scm (nethack)[inputs]: Move flex & bison from here... [native-inputs]: ...to this new field. --- gnu/packages/games.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 8a24dad33d..4d4b2b0b05 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -50,6 +50,7 @@ ;;; Copyright © 2020 Naga Malleswari ;;; Copyright © 2020 Vitaliy Shatrov ;;; Copyright © 2020 Jack Hill +;;; Copyright © 2020 Vincent Legoll ;;; ;;; This file is part of GNU Guix. ;;; @@ -1293,10 +1294,11 @@ watch your CPU playing while enjoying a cup of tea!") (string-join (string-split version #\.) "") "-src.tgz")) (sha256 (base32 "1liyckjp34j354qnxc1zn9730lh1p2dabrg1hap24z6xnqx0rpng")))) + (native-inputs + `(("bison" ,bison) + ("flex" ,flex))) (inputs `(("ncurses" ,ncurses) - ("bison" ,bison) - ("flex" ,flex) ("less" ,less))) (build-system gnu-build-system) (arguments -- 2.25.2