GNU bug report logs -
#48952
[PATCH 0/3] build-system: Add godot-build-system.
Previous Next
Full log
View this message in rfc822 format
* gnu/packages/game-development.scm (material-maker): New variable.
---
gnu/packages/game-development.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 305c2c2819..f0096a4c59 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -25,6 +25,7 @@
;;; Copyright © 2020-2021 James Smith <jsubuntuxp <at> disroot.org>
;;; Copyright © 2021 Ekaitz Zarraga <ekaitz <at> elenq.tech>
;;; Copyright © 2021 Andy Tai <atai <at> atai.org>
+;;; Copyright © 2021 Vinicius Monego <monego <at> posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -52,6 +53,7 @@
#:use-module (guix utils)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system godot)
#:use-module (guix build-system python)
#:use-module (guix build-system scons)
#:use-module (gnu packages)
@@ -622,6 +624,29 @@ development of visual novels, written on top of Guile-SDL2. It is still
experimental.")
(license license:lgpl3+)))
+(define-public material-maker
+ (package
+ (name "material-maker")
+ (version "0.97")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/RodZill4/material-maker")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06y4kaknrwkvwgznlyql9c5f5sjr32fadzraww3g7vcx5y240cr0"))))
+ (build-system godot-build-system)
+ (arguments
+ `(#:game ,name))
+ (home-page "https://www.materialmaker.org/")
+ (synopsis "Procedural textures authoring and 3D model painting tool")
+ (description
+ "Material Maker is a tool based on Godot Engine that can be used to
+create textures procedurally and paint 3D models.")
+ (license license:expat)))
+
(define-public sfml
(package
(name "sfml")
--
2.30.2
This bug report was last modified 3 years and 137 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.