ran guix style
This commit is contained in:
parent
a9db1f9554
commit
4887bae54b
1 changed files with 27 additions and 16 deletions
|
@ -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)
|
||||||
|
@ -22,22 +23,32 @@
|
||||||
(name "melonds")
|
(name "melonds")
|
||||||
(version "0.9.5")
|
(version "0.9.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(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
|
||||||
#:tests? #f
|
(list
|
||||||
#:build-type "Release"))
|
#:tests? #f
|
||||||
|
#: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)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue