ran guix style

This commit is contained in:
Chad Nelson 2024-02-10 16:46:03 -07:00
parent a9db1f9554
commit 4887bae54b

View file

@ -3,7 +3,8 @@
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system cmake) #:use-module (guix build-system cmake)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses)
#:prefix license:)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages kde-frameworks) #:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages curl) #:use-module (gnu packages curl)
@ -28,16 +29,26 @@
(url "https://github.com/melonDS-emu/melonDS") (url "https://github.com/melonDS-emu/melonDS")
(commit "0.9.5"))) (commit "0.9.5")))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (base32 "0c4hhs5mffj43pa2y18k70q6szc09m8yj0gqw2svszpvpz2n91cz")))) (sha256
(native-inputs (base32 "0c4hhs5mffj43pa2y18k70q6szc09m8yj0gqw2svszpvpz2n91cz"))))
(list pkg-config extra-cmake-modules)) (native-inputs (list pkg-config extra-cmake-modules))
(inputs (inputs (list wayland
(list wayland egl-wayland curl libpcap sdl2 qtbase-5 qtmultimedia-5 libslirp libarchive zstd)) egl-wayland
curl
libpcap
sdl2
qtbase-5
qtmultimedia-5
libslirp
libarchive
zstd))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (list (arguments
(list
#:tests? #f #:tests? #f
#:build-type "Release")) #:build-type "Release"))
(home-page "https://github.com/melonDS-emu/melonDS") (home-page "https://github.com/melonDS-emu/melonDS")
(synopsis "DS emulator, sorta") (synopsis "DS emulator, sorta")
(description "DS emulator, sorta. The goal is to do things right and fast, akin to blargSNES (but hopefully better). But also to, you know, have a fun challenge :)") (description
"DS emulator, sorta. The goal is to do things right and fast, akin to blargSNES (but hopefully better). But also to, you know, have a fun challenge :)")
(license license:gpl3))) (license license:gpl3)))