mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: ppsspp: Update to 1.10.3.
* gnu/packages/emulators.scm (ppsspp): Update to 1.10.3. [snippet]: Update the snippet, that strips glslang from build. [inputs]: Update lang. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3cbf359f70
commit
e7cacc91e6
1 changed files with 5 additions and 5 deletions
|
@ -1890,7 +1890,7 @@ (define-public unicorn
|
||||||
(define-public ppsspp
|
(define-public ppsspp
|
||||||
(package
|
(package
|
||||||
(name "ppsspp")
|
(name "ppsspp")
|
||||||
(version "1.10")
|
(version "1.10.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1898,7 +1898,7 @@ (define-public ppsspp
|
||||||
(url "https://github.com/hrydgard/ppsspp")
|
(url "https://github.com/hrydgard/ppsspp")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "02yx1w0ygclnmdl0imsvgj24lkzi55wvxkf47q617j0jgrqhy8yl"))
|
(base32 "0znxlbj6cfw7gn0naay0mzhc0k5saw8nrwpspcn7gap1023p06w2"))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(patches
|
(patches
|
||||||
(search-patches "ppsspp-disable-upgrade-and-gold.patch"))
|
(search-patches "ppsspp-disable-upgrade-and-gold.patch"))
|
||||||
|
@ -1949,7 +1949,7 @@ (define-public ppsspp
|
||||||
" spirv-cross-reflect spirv-cross-util")))
|
" spirv-cross-reflect spirv-cross-util")))
|
||||||
(substitute* "ext/CMakeLists.txt"
|
(substitute* "ext/CMakeLists.txt"
|
||||||
(("add_subdirectory\\(glew\\)") "")
|
(("add_subdirectory\\(glew\\)") "")
|
||||||
(("add_subdirectory\\(glslang\\)") "")
|
(("add_subdirectory\\(glslang( [A-Z_]*)*\\)") "")
|
||||||
(("add_subdirectory\\(snappy\\)") "")
|
(("add_subdirectory\\(snappy\\)") "")
|
||||||
(("add_subdirectory\\(SPIRV-Cross-build\\)") ""))
|
(("add_subdirectory\\(SPIRV-Cross-build\\)") ""))
|
||||||
;; Finally, we can delete the bundled sources.
|
;; Finally, we can delete the bundled sources.
|
||||||
|
@ -1992,14 +1992,14 @@ (define-public ppsspp
|
||||||
;; TODO: unbundle armips.
|
;; TODO: unbundle armips.
|
||||||
("armips-source" ,(package-source armips))
|
("armips-source" ,(package-source armips))
|
||||||
("lang"
|
("lang"
|
||||||
,(let ((commit "d184ba2b607a03435be579406b816c90add334e6"))
|
,(let ((commit "1c64b8fbd3cb6bd87935eb53f302f7de6f86e209"))
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/hrydgard/ppsspp-lang")
|
(url "https://github.com/hrydgard/ppsspp-lang")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0s003x6247nx09qd6a1jz1l2hsk5d6k1zmh8mg3m6hjjhvbvd9j9"))
|
(base32 "0rprn3yd8xfrvi0fm62sgpqa8n73jk7zmlscp8cp0h2fawqpiamd"))
|
||||||
(file-name (git-file-name "ppsspp-lang" commit)))))
|
(file-name (git-file-name "ppsspp-lang" commit)))))
|
||||||
("tests"
|
("tests"
|
||||||
,(let ((commit "328b839c7243e7f733f9eae88d059485e3d808e7"))
|
,(let ((commit "328b839c7243e7f733f9eae88d059485e3d808e7"))
|
||||||
|
|
Loading…
Reference in a new issue