From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44603) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iHB7Y-0002wv-J5 for guix-patches@gnu.org; Sun, 06 Oct 2019 14:19:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iHB7X-00069L-HI for guix-patches@gnu.org; Sun, 06 Oct 2019 14:19:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38027) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iHB7X-00069G-Ee for guix-patches@gnu.org; Sun, 06 Oct 2019 14:19:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iHB7X-0000wQ-AP for guix-patches@gnu.org; Sun, 06 Oct 2019 14:19:03 -0400 Subject: [bug#36978] [PATCH v2 1/3] gnu: Add fifechan. Resent-Message-ID: From: Christopher Baines Date: Sun, 6 Oct 2019 19:18:16 +0100 Message-Id: <20191006181818.18333-1-mail@cbaines.net> In-Reply-To: References: MIME-Version: 1.0 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: 36978@debbugs.gnu.org * gnu/packages/games.scm (fifechan): New variable. --- gnu/packages/games.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index c0d8ce9c71..ebd21fb501 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2027,6 +2027,33 @@ some of the restrictions in the venerable Z-machine format. This is the reference interpreter, using the Glk API.") (license license:expat))) +(define-public fifechan + (package + (name "fifechan") + (version "0.1.5") + (source (origin + (method url-fetch) + (uri (string-append "https://codeload.github.com/fifengine/" + "fifechan/tar.gz/" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0wxs9vz5x9y8chghd8vp7vfk089lfb0qnzggi17zrqkrngs5zgi9")))) + (build-system cmake-build-system) + (inputs + `(("sdl2" ,sdl2) + ("sdl2-image" ,sdl2-image) + ("mesa" ,mesa))) + (arguments + '(#:tests? #f)) ; No included tests + (home-page "https://fifengine.github.io/fifechan/") + (synopsis "Cross platform GUI library specifically for games") + (description + "Fifechan is a lightweight cross platform GUI library written in C++ +specifically designed for games. It has a built in set of extendable GUI +Widgets, and allows users to create more.") + (license license:lgpl2.1+))) + (define-public fizmo (package (name "fizmo") -- 2.23.0