[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48952] [PATCH v2 5/6] gnu: Add pixelorama.
From: |
Vinicius Monego |
Subject: |
[bug#48952] [PATCH v2 5/6] gnu: Add pixelorama. |
Date: |
Tue, 21 Dec 2021 23:55:47 +0000 |
* gnu/packages/game-development.scm (pixelorama): New variable.
---
gnu/packages/game-development.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index f0096a4c59..294c9ccbe9 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -647,6 +647,28 @@ experimental.")
create textures procedurally and paint 3D models.")
(license license:expat)))
+(define-public pixelorama
+ (package
+ (name "pixelorama")
+ (version "0.9.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Orama-Interactive/Pixelorama")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0m08lzb3cqbv5k5nqygd22kgq6ihacc4qrsybmys3v1mv694c9wm"))))
+ (build-system godot-build-system)
+ (arguments
+ `(#:game ,name
+ #:export-name "Linux/X11 64-bit"))
+ (home-page "https://orama-interactive.itch.io/pixelorama")
+ (synopsis "2D sprite editor")
+ (description "Pixelorama is a 2D sprite editor made with Godot engine.")
+ (license license:expat)))
+
(define-public sfml
(package
(name "sfml")
--
2.30.2
- [bug#48952] [PATCH v2 0/6] Add godot-build-system (v2)., Vinicius Monego, 2021/12/21
- [bug#48952] [PATCH v2 1/6] build-system: Add godot-build-system., Vinicius Monego, 2021/12/21
- [bug#48952] [PATCH v2 2/6] gnu: superstarfighter: Use godot-build-system., Vinicius Monego, 2021/12/21
- [bug#48952] [PATCH v2 4/6] gnu: Add material-maker., Vinicius Monego, 2021/12/21
- [bug#48952] [PATCH v2 3/6] gnu: Add librerama., Vinicius Monego, 2021/12/21
- [bug#48952] [PATCH v2 5/6] gnu: Add pixelorama.,
Vinicius Monego <=
- [bug#48952] [PATCH v2 6/6] gnu: Add lorien., Vinicius Monego, 2021/12/21
- [bug#48952] [PATCH v2 0/6] Add godot-build-system (v2)., Nicolas Goaziou, 2021/12/30