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:
Tobias Geerinckx-Rice 2023-09-17 02:00:00 +02:00
parent 30ff8d1692
commit 4bdb8bd267
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -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.