diff options
author | ColdSideOfYourPillow <ColdSideOfYourPillow@noreply.codeberg.org> | 2025-08-07 17:11:23 +0530 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-08-12 07:52:37 +0200 |
commit | 9d80a44dee628898cc257ecc3bcf9b90bddb868d (patch) | |
tree | 3ae143acf51bcdb14670cc2d5108e9d6375316ab | |
parent | 7e299cee255cdd3d20ccbe130af311dea2fb7e26 (diff) |
gnu: luanti-mineclone: Rename to luanti-voxelibre.
* gnu/packages/lunati.scm (luanti-mineclone): Deprecate and rename to…
(luanti-voxelibre): … this.
[name, source, arguments, synopsis, description]: Update accordingly.
* gnu/packages/minetest.scm (minetest-mineclone): Adjust deprecation notice
accordingly.
Change-Id: Ic25111325ed032317ac32bf75da2fb086f01970d
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/luanti.scm | 20 | ||||
-rw-r--r-- | gnu/packages/minetest.scm | 2 |
2 files changed, 13 insertions, 9 deletions
diff --git a/gnu/packages/luanti.scm b/gnu/packages/luanti.scm index 728fe640d4..54c28b14d0 100644 --- a/gnu/packages/luanti.scm +++ b/gnu/packages/luanti.scm @@ -432,14 +432,14 @@ 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-voxelibre (package - (name "luanti-mineclone") + (name "luanti-voxelibre") (version "0.90.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://git.minetest.land/MineClone2/MineClone2") + (url "https://git.minetest.land/VoxeLibre/VoxeLibre") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -448,14 +448,18 @@ with different rules and mechanics.") (build-system copy-build-system) (arguments `(#:install-plan - '(("." "share/luanti/games/mineclone")))) - (synopsis "Minecraft clone based on Luanti engine") + '(("." "share/luanti/games/voxelibre")))) + (synopsis "A voxel-based sandbox 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/") + "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") diff --git a/gnu/packages/minetest.scm b/gnu/packages/minetest.scm index 0cd6907b7e..ce94a3adf8 100644 --- a/gnu/packages/minetest.scm +++ b/gnu/packages/minetest.scm @@ -57,7 +57,7 @@ (deprecated-package "minetest-mesecons" luanti-mesecons)) (define-public minetest-mineclone - (deprecated-package "minetest-mineclone" luanti-mineclone)) + (deprecated-package "minetest-mineclone" luanti-voxelibre)) (define-public minetest-mobs (deprecated-package "minetest-mobs" luanti-mobs)) |