From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vincent Legoll Subject: [PATCH 6/6] gnu: nethack: Make some inputs native. Date: Wed, 1 Apr 2020 00:04:39 +0200 Message-ID: <20200331220439.3828-6-vincent.legoll@gmail.com> References: <20200331220439.3828-1-vincent.legoll@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:34063) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJP0n-0005on-Fu for guix-devel@gnu.org; Tue, 31 Mar 2020 18:05:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJP0m-0000RK-39 for guix-devel@gnu.org; Tue, 31 Mar 2020 18:05:33 -0400 Received: from mail-wm1-x329.google.com ([2a00:1450:4864:20::329]:35397) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jJP0l-0000Lz-SU for guix-devel@gnu.org; Tue, 31 Mar 2020 18:05:32 -0400 Received: by mail-wm1-x329.google.com with SMTP id i19so4850399wmb.0 for ; Tue, 31 Mar 2020 15:05:31 -0700 (PDT) In-Reply-To: <20200331220439.3828-1-vincent.legoll@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane-mx.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/games.scm (nethack)[native-inputs]: New field. [inputs]: Move flex & bison to native-inputs. --- 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 3284459021..addadebbba 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -48,6 +48,7 @@ ;;; Copyright © 2017, 2019 Hartmut Goebel ;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero ;;; Copyright © 2020 Naga Malleswari +;;; Copyright © 2020 Vincent Legoll ;;; ;;; This file is part of GNU Guix. ;;; @@ -1250,10 +1251,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