mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: bsnes: Remove input labels and use gexps.
* gnu/packages/emulators.scm (bsnes) [arguments]: Use gexps. [inputs]: Remove labels. [home-page]: Update URL. Change-Id: I69046d977c4647f46c1359d62b762149b8f70160
This commit is contained in:
parent
7975585559
commit
1ca236a02a
1 changed files with 21 additions and 22 deletions
|
@ -2230,31 +2230,30 @@ (define-public bsnes
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0j054x38fwai61vj36sc04r3zkzay5acq2cgd9zqv5hs51s36g5b"))))
|
||||
(base32 "0j054x38fwai61vj36sc04r3zkzay5acq2cgd9zqv5hs51s36g5b"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags (list "-C" "bsnes"
|
||||
(list
|
||||
#:make-flags #~(list "-C" "bsnes"
|
||||
;; Remove march=native
|
||||
"local=false"
|
||||
(string-append "prefix=" (assoc-ref %outputs "out")))
|
||||
#:tests? #f ; No tests.
|
||||
#:phases (modify-phases %standard-phases
|
||||
(string-append "prefix=" #$output))
|
||||
#:tests? #f ;No tests.
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(native-inputs (list pkg-config))
|
||||
(inputs
|
||||
`(("alsa-lib" ,alsa-lib)
|
||||
("ao" ,ao)
|
||||
("cairo" ,cairo)
|
||||
("eudev" ,eudev)
|
||||
("gtksourceview-2" ,gtksourceview-2)
|
||||
("libxrandr" ,libxrandr)
|
||||
("libxv" ,libxv)
|
||||
("openal" ,openal)
|
||||
("pulseaudio" ,pulseaudio)
|
||||
("sdl2" ,sdl2)))
|
||||
(home-page "https://bsnes.dev/")
|
||||
(list alsa-lib
|
||||
ao
|
||||
cairo
|
||||
eudev
|
||||
gtksourceview-2
|
||||
libxrandr
|
||||
libxv
|
||||
openal
|
||||
pulseaudio
|
||||
sdl2))
|
||||
(home-page "https://github.com/bsnes-emu/bsnes")
|
||||
(synopsis "Emulator for the Super Nintendo / Super Famicom systems")
|
||||
(description
|
||||
"bsnes is a Super Nintendo / Super Famicom emulator that focuses on
|
||||
|
|
Loading…
Reference in a new issue