mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add desmume.
* gnu/packages/games.scm (desmume): New variable.
This commit is contained in:
parent
8d5ceb120d
commit
fea1f275bc
1 changed files with 34 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
||||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||||
;;; Copyright © 2016 Rodger Fox <thylakoid@openmailbox.org>
|
;;; Copyright © 2016 Rodger Fox <thylakoid@openmailbox.org>
|
||||||
|
;;; Copyright © 2016 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1917,3 +1918,36 @@ (define-public pioneers
|
||||||
players.")
|
players.")
|
||||||
(home-page "http://pio.sourceforge.net/")
|
(home-page "http://pio.sourceforge.net/")
|
||||||
(license license:gpl2+)))
|
(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
|
||||||
|
;; Enable support for WiFi and microphone.
|
||||||
|
`(#:configure-flags '("--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 an emulator for the Nintendo DS handheld gaming console.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
Loading…
Reference in a new issue