From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manolis Ragkousis Subject: [PATCH] gnu: Add desmume. Date: Mon, 29 Feb 2016 22:30:58 +0200 Message-ID: <56D4AA82.2020801@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------080402010701000502030604" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57876) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aaUTC-0007dc-L7 for guix-devel@gnu.org; Mon, 29 Feb 2016 15:31:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aaUT9-0003e8-Dj for guix-devel@gnu.org; Mon, 29 Feb 2016 15:31:06 -0500 Received: from mail-wm0-x22a.google.com ([2a00:1450:400c:c09::22a]:37167) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aaUT9-0003ds-2e for guix-devel@gnu.org; Mon, 29 Feb 2016 15:31:03 -0500 Received: by mail-wm0-x22a.google.com with SMTP id p65so5991610wmp.0 for ; Mon, 29 Feb 2016 12:31:02 -0800 (PST) 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.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------080402010701000502030604 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit This patch adds DeSmuMe a Nintendo DS emulator. I am looking forward to using it with emulation-station :-) It's licensed under the GPLv2 and doesn't require any binary firmware from the DS to run. Manolis --------------080402010701000502030604 Content-Type: text/x-patch; name="0001-gnu-Add-desmume.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-gnu-Add-desmume.patch" >From 86e12e184b4f2e51b566becaf2c358e5c8a51c09 Mon Sep 17 00:00:00 2001 From: Manolis Ragkousis Date: Mon, 29 Feb 2016 22:20:16 +0200 Subject: [PATCH] gnu: Add desmume. * gnu/packages/games.scm (desmume): New variable. --- gnu/packages/games.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 991fa24..d0e972f 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -15,6 +15,7 @@ ;;; Copyright © 2015 Paul van der Walt ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2016 Rodger Fox +;;; Copyright © 2016 Manolis Fragkiskos Ragkousis ;;; ;;; This file is part of GNU Guix. ;;; @@ -1917,3 +1918,34 @@ Catan. It can be played on a local network, on the internet, and with AI players.") (home-page "http://pio.sourceforge.net/") (license license:gpl2+))) + +(define-public desmume + (package + (name "desmume") + (version "0.9.11") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/desmume/desmume/" + version "/desmume-" version ".tar.gz")) + (sha256 + (base32 + "15l8wdw3q61fniy3h93d84dnm6s4pyadvh95a0j6d580rjk4pcrs")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags '(;; Support for wifi and mic. + "--enable-wifi" + "--enable-openal"))) + (native-inputs `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs `(("zlib" ,zlib) + ("sdl" ,sdl) + ("glib" ,glib) + ("gtk+" ,gtk+-2) + ("glu" ,glu))) + (home-page "http://desmume.org/") + (synopsis "Nintendo DS emulator") + (description + "DeSmuME is a Nintendo DS emulator") + (license license:gpl2))) -- 2.7.2 --------------080402010701000502030604--