diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-11-29 17:48:40 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-12-07 08:16:55 +0100 |
| commit | 96b81b2da6fb9e999c17c0a007ce6a01145a329e (patch) | |
| tree | aa9982f1dfbd1b972de0686c3d270eac5568c551 /gnu/packages/game-development.scm | |
| parent | 8084fa0d9e7994790b55ff88a8a4f1f896e4ffa8 (diff) | |
gnu: Add renpy-tutorial.
* gnu/packages/game-development.scm (renpy-tutorial): New variable.
Diffstat (limited to 'gnu/packages/game-development.scm')
| -rw-r--r-- | gnu/packages/game-development.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 51e83a9a8a0..b00b99b9165 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1931,6 +1931,18 @@ your Ren'py installation works, similar to a \"Hello World\" program in other programming languages.") (license license:expat))) +(define-public renpy-tutorial + (package + (inherit renpy) + (name "renpy-tutorial") + (build-system renpy-build-system) + (arguments (list #:game "the_question/game")) + (native-inputs (list xorg-server-for-tests)) + (synopsis "Tutorial for Ren'py") + (description "This package provides an interactive tutorial for the Ren'py +visual novel engine, explaining all of its features.") + (license license:expat))) + (define-public python-pyxel ;; Note to updaters: Use commit and revision even if you're bumping ;; to a release, as upstream is known to "reuse" tags. |
