[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/10: gnu: Add minetest-sound-api-core.
From: |
guix-commits |
Subject: |
03/10: gnu: Add minetest-sound-api-core. |
Date: |
Sun, 5 Jun 2022 06:12:27 -0400 (EDT) |
lilyp pushed a commit to branch master
in repository guix.
commit 051e5a049daba024231b04e264084fb62dd59181
Author: Vivien Kraus <vivien@planete-kraus.eu>
AuthorDate: Sun May 29 14:14:15 2022 +0200
gnu: Add minetest-sound-api-core.
* gnu/packages/minetest.scm (minetest-sound-api-core): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
gnu/packages/minetest.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/minetest.scm b/gnu/packages/minetest.scm
index 2efd1468d2..e6af5fe8ad 100644
--- a/gnu/packages/minetest.scm
+++ b/gnu/packages/minetest.scm
@@ -213,6 +213,36 @@ as swords and tools made of different materials. It also
adds copper rails.")
(license license:zlib)
(properties `((upstream-name . "Calinou/moreores")))))
+(define-public minetest-sound-api-core
+ (package
+ (name "minetest-sound-api-core")
+ ;; No tags, no releases. The author intended to let users use it as a
+ ;; submodules for other projects.
+ ;; https://github.com/mt-mods/basic_materials/issues/4
+ (version "2022-02-27")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mt-mods/sound_api_core")
+ (commit "6956e49e775f325116f8e0c643899c089c691e1e")))
+ (sha256
+ (base32 "1ys6g2skhkksa4cx9agxhsibj5js8z4y2q1ngis9ddr38p756pcy"))
+ (file-name (git-file-name name version))
+ (snippet
+ '(begin
+ (call-with-output-file "mod.conf"
+ (lambda (port)
+ (format port "\
+name = sound_api_core")))))))
+ (build-system minetest-mod-build-system)
+ (propagated-inputs '())
+ (home-page "https://github.com/mt-mods/sound_api_core")
+ (synopsis "Core for game agnostic sounds")
+ (description
+ "This library can be used to get some specific sounds, whatever the
game.")
+ (license license:expat)))
+
(define-public minetest-basic-materials
(package
(name "minetest-basic-materials")
- branch master updated (3f70501532 -> 77f84500ed), guix-commits, 2022/06/05
- 01/10: gnu: Add irrlicht-for-minetest., guix-commits, 2022/06/05
- 04/10: gnu: minetest-basic-materials: Update to 2022-03-28., guix-commits, 2022/06/05
- 06/10: gnu: minetest-mesecons: Update to 2022-04-01., guix-commits, 2022/06/05
- 02/10: gnu: minetest: Update to 5.5.1., guix-commits, 2022/06/05
- 03/10: gnu: Add minetest-sound-api-core.,
guix-commits <=
- 05/10: gnu: minetest-homedecor-modpack: Update to 2022-05-18., guix-commits, 2022/06/05
- 07/10: gnu: minetest-mineclone: Update to 0.75.0., guix-commits, 2022/06/05
- 08/10: gnu: minetest-technic: Update to 2022-02-06., guix-commits, 2022/06/05
- 10/10: gnu: emacs-next: Update to 29.0.50-1.0a5477b., guix-commits, 2022/06/05
- 09/10: gnu: minetest-advtrains: Update to 2.4.1., guix-commits, 2022/06/05