mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: dolphin-emu: Update to 5.0-13669.f9deb68.
* gnu/packages/emulators.scm (dolphin-emu): Update to 5.0-13669.f9deb68. [source]: Don't explicitly return #t from snippet. [arguments]: Nor from phases.
This commit is contained in:
parent
30ff8d1692
commit
4bdb8bd267
1 changed files with 7 additions and 9 deletions
|
@ -250,8 +250,8 @@ (define-public desmume
|
|||
;; Following commits and revision numbers of beta versions listed at
|
||||
;; https://dolphin-emu.org/download/.
|
||||
(define-public dolphin-emu
|
||||
(let ((commit "a34823df61df65168aa40ef5e82e44defd4a0138")
|
||||
(revision "13178"))
|
||||
(let ((commit "f9deb68aee962564b1495ff04c54c015e58d086f")
|
||||
(revision "13669"))
|
||||
(package
|
||||
(name "dolphin-emu")
|
||||
(version (git-version "5.0" revision commit))
|
||||
|
@ -262,6 +262,8 @@ (define-public dolphin-emu
|
|||
(url "https://github.com/dolphin-emu/dolphin")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1p8qsxlabgmz3nic0a9ghh9d3lzl5f8i3kmdrrvx6w8kdlp33018"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
|
@ -273,11 +275,8 @@ (define-public dolphin-emu
|
|||
"gettext" "hidapi" "libpng" "libusb" "mbedtls"
|
||||
"miniupnpc" "MoltenVK" "zlib"))
|
||||
;; Clean up source.
|
||||
(for-each delete-file (find-files "." ".*\\.(bin|dsy|exe|jar|rar)$"))
|
||||
#t))
|
||||
(sha256
|
||||
(base32
|
||||
"0j6hnj60iai366kl0kdbn1jkwc183l02g65mp2vq4qb2yd4399l1"))))
|
||||
(for-each delete-file
|
||||
(find-files "." ".*\\.(bin|dsy|exe|jar|rar)$"))))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f
|
||||
|
@ -301,8 +300,7 @@ (define-public dolphin-emu
|
|||
(substitute* "Source/Core/VideoBackends/Vulkan/VulkanLoader.cpp"
|
||||
(("\"vulkan\", 1") (string-append "\"vulkan\""))
|
||||
(("\"vulkan\"") (string-append "\"" libvulkan "\""))
|
||||
(("Common::DynamicLibrary::GetVersionedFilename") ""))
|
||||
#t))))
|
||||
(("Common::DynamicLibrary::GetVersionedFilename") ""))))))
|
||||
|
||||
;; The FindGTK2 cmake script only checks hardcoded directories for
|
||||
;; glib/gtk headers.
|
||||
|
|
Loading…
Reference in a new issue