diff --git a/skg/packages/melonds.scm b/skg/packages/melonds.scm index f4db0e9..017ff31 100644 --- a/skg/packages/melonds.scm +++ b/skg/packages/melonds.scm @@ -3,7 +3,8 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #: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 kde-frameworks) #:use-module (gnu packages curl) @@ -22,22 +23,32 @@ (name "melonds") (version "0.9.5") (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/melonDS-emu/melonDS") - (commit "0.9.5"))) - (file-name (git-file-name name version)) - (sha256 (base32 "0c4hhs5mffj43pa2y18k70q6szc09m8yj0gqw2svszpvpz2n91cz")))) - (native-inputs - (list pkg-config extra-cmake-modules)) - (inputs - (list wayland egl-wayland curl libpcap sdl2 qtbase-5 qtmultimedia-5 libslirp libarchive zstd)) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/melonDS-emu/melonDS") + (commit "0.9.5"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c4hhs5mffj43pa2y18k70q6szc09m8yj0gqw2svszpvpz2n91cz")))) + (native-inputs (list pkg-config extra-cmake-modules)) + (inputs (list wayland + egl-wayland + curl + libpcap + sdl2 + qtbase-5 + qtmultimedia-5 + libslirp + libarchive + zstd)) (build-system cmake-build-system) - (arguments (list - #:tests? #f - #:build-type "Release")) + (arguments + (list + #:tests? #f + #:build-type "Release")) (home-page "https://github.com/melonDS-emu/melonDS") (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)))