diff options
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 5b7852c4eb..3ea5bc979c 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -22,7 +22,7 @@ ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org> ;;; Copyright © 2021 Alexandru-Sergiu Marton <brown121407@posteo.ro> ;;; Copyright © 2021 Dmitry Polyakov <polyakov@liltechdude.xyz> -;;; Copyright © 2020-2022 James Smith <jsubuntuxp@disroot.org> +;;; Copyright © 2020-2022, 2024 James Smith <jsubuntuxp@disroot.org> ;;; Copyright © 2021 Ekaitz Zarraga <ekaitz@elenq.tech> ;;; Copyright © 2021 Andy Tai <atai@atai.org> ;;; Copyright © 2022 Felix Gruber <felgru@posteo.net> @@ -921,7 +921,7 @@ sounds from presets such as \"explosion\" or \"powerup\".") (define-public surgescript (package (name "surgescript") - (version "0.5.6.1") + (version "0.6.0") (source (origin (method git-fetch) @@ -930,7 +930,7 @@ sounds from presets such as \"explosion\" or \"powerup\".") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1p1pxb4iixzq7z14bpy32dx3dhfaaf6mcz4y3g3g09bkdmm1ys6j")))) + (base32 "17k14108hvz329cqnr3g799ksmiv8d710slnghi2wmwswir8s0jd")))) (build-system cmake-build-system) (arguments (list #:tests? #f)) ; there are no tests @@ -2097,7 +2097,7 @@ scripted in a Python-like language.") (define-public godot (package (name "godot") - (version "4.2.1") + (version "4.2.2") (source (origin (method git-fetch) (uri (git-reference @@ -2106,7 +2106,7 @@ scripted in a Python-like language.") (file-name (git-file-name name version)) (sha256 (base32 - "0d5y678986lx4a4xjkxs5glh2dckp8wwl3r3mw72inq7gvaa18s3")) + "0wm0pla6f6gvk21gbm5kiihinn05dvvprk0242m6s8c78wy60wka")) (modules '((guix build utils) (ice-9 ftw) (srfi srfi-1))) @@ -3099,23 +3099,23 @@ game engine. id Tech 2 is the engine originally behind Quake 2.") (define-public dhewm3 (package (name "dhewm3") - (version "1.5.2") + (version "1.5.3") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/dhewm/dhewm3/releases/download/" - version "/dhewm3-" version "-src.tar.xz")) + (method git-fetch) + (uri (git-reference (url "https://github.com/dhewm/dhewm3") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "10p0w1x5wx9b7d8mzvb6yqjia9prhkjwz04vbvphy8p383r33am6")))) + "1zbwhrngmgb0969izmxididyx892qk7591aa9mbigakw6dvmlm84")))) (build-system cmake-build-system) (arguments - `(#:tests? #f ; No tests. - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'change-to-build-dir - (lambda _ - (chdir "neo")))))) + (list #:tests? #f ; No tests. + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'change-to-build-dir + (lambda _ + (chdir "neo")))))) (inputs (list curl libx11 |