me
/
guix
Archived
1
0
Fork 0

gnu: mednafen: Improve package style.

* gnu/packages/emulators.scm (mednafen)[arguments]: Use G-expressions.
[inputs]: Remove input labels.

Change-Id: I8ec291faae92a19da880a65fab39d9a01b7ddda7
master
Nicolas Goaziou 2024-07-23 15:38:44 +02:00
parent 5ae01fed27
commit 0ff5ecc3ad
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 11 additions and 11 deletions

View File

@ -687,20 +687,20 @@ V2.")
(base32 "0ciqr3dlf1b3r8jncy9k9cihiclai8v28r9pb1vsw4k2nr5bjzny"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags
(list
;; "--with-external-mpcdec"
"--with-external-lzo")))
(list #:configure-flags
#~(list
;; "--with-external-mpcdec"
"--with-external-lzo")))
(native-inputs
(list pkg-config))
(inputs
`(("alsa" ,alsa-lib)
("flac" ,flac)
;; ("libmpcdec" ,libmpcdec) FIXME: not recognized.
("libsndfile" ,libsndfile)
("lzo" ,lzo)
("sdl2" ,sdl2)
("zlib" ,zlib)))
(list alsa-lib
flac
;; libmpcdec ;FIXME: not recognized.
libsndfile
lzo
sdl2
zlib))
(home-page "https://mednafen.github.io/")
(synopsis "Multi-system emulator utilizing OpenGL and SDL")
(description