diff options
Diffstat (limited to 'gnu/packages/luanti.scm')
-rw-r--r-- | gnu/packages/luanti.scm | 63 |
1 files changed, 46 insertions, 17 deletions
diff --git a/gnu/packages/luanti.scm b/gnu/packages/luanti.scm index 246c174d45..f9fb9224c9 100644 --- a/gnu/packages/luanti.scm +++ b/gnu/packages/luanti.scm @@ -56,7 +56,7 @@ (define-public luanti (package (name "luanti") - (version "5.12.0") + (version "5.13.0") (source (origin (method git-fetch) @@ -65,7 +65,7 @@ (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1l8kwy23p3gpk12nnhhq1lp4v0zj6kiygnmia043pdinmgzzd0xy")) + (base32 "1gsdsnyrdy40d6n7a0imjg9hs4k8g01zqbz824j0qiyvdvw39wjf")) (modules '((guix build utils) (srfi srfi-26) (ice-9 ftw))) @@ -89,11 +89,10 @@ ;; Catch2 (substitute* "CMakeLists.txt" (("add_subdirectory\\(lib/catch2\\)") "find_package(Catch2 3 REQUIRED)")) - (substitute* "src/catch.h" - (("catch_amalgamated.hpp") "catch2/catch_all.hpp")) - (substitute* "src/unittest/test_irr_rotation.cpp" - (("catch_amalgamated.hpp") "catch2/catch_all.hpp")) - (substitute* "src/unittest/test_irr_matrix4.cpp" + (substitute* '("src/catch.h" + "src/unittest/test_irr_rotation.cpp" + "src/unittest/test_irr_matrix4.cpp" + "src/unittest/test_irr_x_mesh_loader.cpp") (("catch_amalgamated.hpp") "catch2/catch_all.hpp")))))) (build-system cmake-build-system) (arguments @@ -432,30 +431,60 @@ with different rules and mechanics.") (license (list license:lgpl3 license:cc-by-sa3.0)) (properties `((upstream-name . "Jeija/mesecons")))))) -(define-public luanti-mineclone +(define-public luanti-mineclonia (package - (name "luanti-mineclone") - (version "0.80.1") + (name "luanti-mineclonia") + (version "0.115.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://git.minetest.land/MineClone2/MineClone2") + (url "https://codeberg.org/mineclonia/mineclonia") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "0ndgzasjmj8397bb3y2aqalx9v72llwgvp9pv05mms3chpji2675")))) + "0y10rxh7fb6qwny0jpqyz6akw8cwsrdfcyadrqjv774hrr98371a")))) (build-system copy-build-system) (arguments `(#:install-plan - '(("." "share/luanti/games/mineclone")))) - (synopsis "Minecraft clone based on Luanti engine") + '(("." "share/luanti/games/mineclonia")))) + (home-page "https://content.luanti.org/packages/ryvnf/mineclonia/") + (synopsis "An unofficial Minecraft-like game for Luanti") (description - "MineClone is a Luanti subgame, that aims to recreate Minecraft as -closely as the engine allows.") - (home-page "https://content.luanti.net/packages/Wuzzy/mineclone2/") + "Mineclonia is a stable and performant clone of Minecraft, +released as free software. It aims to clone Minecraft as well as +Luanti currently permits without resorting to hacks which are too +heavyweight or complicated to maintain.") (license license:gpl3+))) +(define-public luanti-voxelibre + (package + (name "luanti-voxelibre") + (version "0.90.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.minetest.land/VoxeLibre/VoxeLibre") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ml5z6hfd62kcwimz8sfgvy4f4izhfigmkcb56xcn66kv6b9k91a")))) + (build-system copy-build-system) + (arguments + `(#:install-plan + '(("." "share/luanti/games/voxelibre")))) + (synopsis "Voxel-based sandbox game for Luanti") + (description + "VoxeLibre is a survival sandbox game for Luanti. Survive, gather, + hunt, mine for ores, build, explore, and do much more. Inspired by +Minecraft, pushing beyond.") + (home-page "https://content.luanti.org/packages/Wuzzy/mineclone2/") + (license license:gpl3+))) + +(define-public luanti-mineclone + (deprecated-package "luanti-mineclone" luanti-voxelibre)) + (define-public luanti-mobs (package (name "luanti-mobs") |