diff options
author | David Pflug <david@pflug.io> | 2025-07-05 18:50:48 -0400 |
---|---|---|
committer | Steve George <steve@futurile.net> | 2025-07-16 13:05:40 +0100 |
commit | 412d3573dab8d4ae57b29895e8a460f3e238d297 (patch) | |
tree | 85cd55649645ea4e7bfa26da16ea4a3d40f732dd | |
parent | 6217aa44494bd059e6d25dc93190fd9c0c771f17 (diff) |
gnu: endless-sky: Update to 0.10.14.
* gnu/packages/games.scm (endless-sky): Update to 0.10.14.
[arguments]<#:tests?> disable tests on x86-32.
Change-Id: I869760953d2cf8986dfaded1564b02d0bf652893
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/games.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 7dd0eb89a5..913cdf7930 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -9955,7 +9955,7 @@ your score gets higher, you level up and the blocks fall faster.") (define-public endless-sky (package (name "endless-sky") - (version "0.10.10") + (version "0.10.14") (source (origin (method git-fetch) @@ -9964,13 +9964,14 @@ your score gets higher, you level up and the blocks fall faster.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1nwim56ii3z6f9gxvmf9q4i5chlsgk3kjisz8li6ivr595wq5502")))) + (base32 "198ijk95qhq5qicp27f26g0pqsqdgjyb9ll3dmd3dq8b68j3xyfc")))) (build-system cmake-build-system) (arguments (list #:configure-flags #~(list "-DES_USE_VCPKG=0" "-DES_USE_SYSTEM_LIBRARIES=1") #:make-flags #~(list (string-append "PREFIX=" #$output)) #:build-type "Release" + #:tests? (not (target-x86-32?)) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'fix-paths @@ -9987,7 +9988,9 @@ your score gets higher, you level up and the blocks fall faster.") libjpeg-turbo libmad libpng + minizip openal + pkgconf sdl2 `(,util-linux "lib"))) ; for libuuid (home-page "https://endless-sky.github.io/") |