* [PATCH] gnu: Add desmume.
@ 2016-02-29 20:30 Manolis Ragkousis
2016-02-29 20:54 ` Thompson, David
2016-03-01 3:07 ` Thompson, David
0 siblings, 2 replies; 4+ messages in thread
From: Manolis Ragkousis @ 2016-02-29 20:30 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 208 bytes --]
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
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-desmume.patch --]
[-- Type: text/x-patch; name="0001-gnu-Add-desmume.patch", Size: 2026 bytes --]
From 86e12e184b4f2e51b566becaf2c358e5c8a51c09 Mon Sep 17 00:00:00 2001
From: Manolis Ragkousis <manolis837@gmail.com>
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 <paul@denknerd.org>
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
;;; Copyright © 2016 Rodger Fox <thylakoid@openmailbox.org>
+;;; Copyright © 2016 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
;;;
;;; 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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add desmume.
2016-02-29 20:30 [PATCH] gnu: Add desmume Manolis Ragkousis
@ 2016-02-29 20:54 ` Thompson, David
2016-03-01 3:07 ` Thompson, David
1 sibling, 0 replies; 4+ messages in thread
From: Thompson, David @ 2016-02-29 20:54 UTC (permalink / raw)
To: Manolis Ragkousis; +Cc: guix-devel
On Mon, Feb 29, 2016 at 3:30 PM, Manolis Ragkousis <manolis837@gmail.com> wrote:
> 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.
Thanks for checking out the potential firmware issue. This looks
great overall, but could you expand the description a bit and make
sure there's a period at the end of the sentence(s)?
Thanks,
- Dave
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add desmume.
2016-02-29 20:30 [PATCH] gnu: Add desmume Manolis Ragkousis
2016-02-29 20:54 ` Thompson, David
@ 2016-03-01 3:07 ` Thompson, David
2016-03-01 13:03 ` Manolis Ragkousis
1 sibling, 1 reply; 4+ messages in thread
From: Thompson, David @ 2016-03-01 3:07 UTC (permalink / raw)
To: Manolis Ragkousis; +Cc: guix-devel
On Mon, Feb 29, 2016 at 3:30 PM, Manolis Ragkousis <manolis837@gmail.com> wrote:
> This patch adds DeSmuMe a Nintendo DS emulator. I am looking forward to
> using it with emulation-station :-)
I fixed this up just a bit and pushed. Thanks!
- Dave
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add desmume.
2016-03-01 3:07 ` Thompson, David
@ 2016-03-01 13:03 ` Manolis Ragkousis
0 siblings, 0 replies; 4+ messages in thread
From: Manolis Ragkousis @ 2016-03-01 13:03 UTC (permalink / raw)
To: Thompson, David; +Cc: guix-devel
Thank you Dave. :-)
I am also looking into packaging a Gameboy advance emulator. I will
report later on that.
On 03/01/16 05:07, Thompson, David wrote:
> On Mon, Feb 29, 2016 at 3:30 PM, Manolis Ragkousis <manolis837@gmail.com> wrote:
>> This patch adds DeSmuMe a Nintendo DS emulator. I am looking forward to
>> using it with emulation-station :-)
>
> I fixed this up just a bit and pushed. Thanks!
>
> - Dave
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-03-01 13:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-29 20:30 [PATCH] gnu: Add desmume Manolis Ragkousis
2016-02-29 20:54 ` Thompson, David
2016-03-01 3:07 ` Thompson, David
2016-03-01 13:03 ` Manolis Ragkousis
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).