[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: gnu: Add minetest-mobs-monster.
From: |
guix-commits |
Subject: |
07/08: gnu: Add minetest-mobs-monster. |
Date: |
Mon, 9 Jan 2023 12:08:56 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit 735e915bbd9d3315b6393de7c2a91b63866c70bd
Author: Vivien Kraus <vivien@planete-kraus.eu>
AuthorDate: Sun Dec 11 14:54:27 2022 +0100
gnu: Add minetest-mobs-monster.
* gnu/packages/minetest.scm (minetest-mobs-monster): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/minetest.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/minetest.scm b/gnu/packages/minetest.scm
index 0ee6690826..a30bce57de 100644
--- a/gnu/packages/minetest.scm
+++ b/gnu/packages/minetest.scm
@@ -472,6 +472,31 @@ bunnies, chickens, cows, kittens, rats, sheep, warthogs,
penguins and pandas.")
(license (list license:cc0 license:expat))
(properties `((upstream-name . "TenPlus1/mobs_animal")))))
+(define-public minetest-mobs-monster
+ (package
+ (name "minetest-mobs-monster")
+ ;; Upstream does not use version numbers, so use the release title
+ ;; from ContentDB instead;
+ (version "2022-12-10")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://notabug.org/TenPlus1/mobs_monster")
+ (commit "1b197f9ae136179a764ef45824464b667ade52e6")))
+ (sha256
+ (base32 "15g8acrzvsiccxchfmgjhyf2lmkbrpdjqv3v7hmqz7xqypi8wm3h"))
+ (file-name (git-file-name name version))))
+ (build-system minetest-mod-build-system)
+ (propagated-inputs (list minetest-mobs))
+ (home-page "https://notabug.org/TenPlus1/mobs_monster")
+ (synopsis "Add monsters with Mobs Redo on minetest")
+ (description
+ "This Minetest mod adds many types of monsters to Minetest, that live on
the
+surface or deep underground.")
+ (license license:expat)
+ (properties `((upstream-name . "TenPlus1/mobs_monster")))))
+
(define-public minetest-pipeworks
(package
(name "minetest-pipeworks")
- branch master updated (8b314efd50 -> 84f117f495), guix-commits, 2023/01/09
- 01/08: doc: cookbook: Add "Installing Guix on a Cluster" chapter., guix-commits, 2023/01/09
- 02/08: substitute: Parse '_NIX_OPTIONS' once., guix-commits, 2023/01/09
- 04/08: daemon: Improve error message for wrong hash sizes., guix-commits, 2023/01/09
- 05/08: read-print: Do not use extended notation when printing '1+', '1-', etc., guix-commits, 2023/01/09
- 06/08: gnu: Add minetest-wielded-light., guix-commits, 2023/01/09
- 08/08: gnu: LLVM, Clang, libomp, lld: Update to 15.0.6., guix-commits, 2023/01/09
- 03/08: derivations: 'read-derivation' correctly handles case with empty hash., guix-commits, 2023/01/09
- 07/08: gnu: Add minetest-mobs-monster.,
guix-commits <=