* [bug#60008] [PATCH] gnu: Add raylib.
@ 2022-12-12 14:11 dan
2022-12-12 18:20 ` ( via Guix-patches via
2022-12-12 23:59 ` dan
0 siblings, 2 replies; 4+ messages in thread
From: dan @ 2022-12-12 14:11 UTC (permalink / raw)
To: 60008
* gnu/packages/game-development.scm (raylib): New variable.
---
gnu/packages/game-development.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 4a0435045b..ca7808c0a1 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -27,6 +27,7 @@
;;; Copyright © 2021 Andy Tai <atai@atai.org>
;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
+;;; Copyright © 2022 dan <i@dan.games>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2866,3 +2867,33 @@ (define-public recastnavigation
progresses the level, or you may regenerate tiles as the world changes.")
(home-page "https://github.com/recastnavigation/recastnavigation")
(license license:zlib))))
+
+(define-public raylib
+ (package
+ (name "raylib")
+ (version "4.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/raysan5/raylib/")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "14v5iwxh8grywiyw9agpd2sfpyriq1rwwkd9f2s4iihh0z5j7hk8"))))
+ (build-system cmake-build-system)
+ (arguments
+ '(#:tests? #f)) ;no test
+ (inputs (list alsa-lib
+ libx11
+ libxrandr
+ libxi
+ libxinerama
+ libxcursor
+ mesa))
+ (native-inputs (list pkg-config))
+ (synopsis "C library for videogame programming")
+ (description
+ "raylib is a simple and easy-to-use library to enjoy videogames programming.")
+ (home-page "https://www.raylib.com/")
+ (license license:zlib)))
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#60008] [PATCH] gnu: Add raylib.
2022-12-12 14:11 [bug#60008] [PATCH] gnu: Add raylib dan
@ 2022-12-12 18:20 ` ( via Guix-patches via
2022-12-12 23:59 ` dan
1 sibling, 0 replies; 4+ messages in thread
From: ( via Guix-patches via @ 2022-12-12 18:20 UTC (permalink / raw)
To: dan, 60008
[-- Attachment #1: Type: text/plain, Size: 726 bytes --]
Heya,
* gnu/packages/game-development.scm (raylib): New variable.
Nice! :D
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -2866,3 +2867,33 @@ (define-public recastnavigation
+ (arguments
+ '(#:tests? #f)) ;no test
``(list ...)'' is preferred to ``'()'' for arguments now:
(arguments
(list #:tests? #f))
+ (description
+ "raylib is a simple and easy-to-use library to enjoy videogames programming.")
A bit markety, imo. How about this?
(description
"raylib is a high-level library for video game programming. It aims to
abstract away platform and graphics details, allowing you to focus on
writing your game.")
-- (
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#60008] [PATCH] gnu: Add raylib.
2022-12-12 14:11 [bug#60008] [PATCH] gnu: Add raylib dan
2022-12-12 18:20 ` ( via Guix-patches via
@ 2022-12-12 23:59 ` dan
2023-01-17 14:50 ` bug#60008: " Ludovic Courtès
1 sibling, 1 reply; 4+ messages in thread
From: dan @ 2022-12-12 23:59 UTC (permalink / raw)
To: 60008
* gnu/packages/game-development.scm (raylib): New variable.
---
gnu/packages/game-development.scm | 33 +++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 4a0435045b..7bdc6a8818 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -27,6 +27,7 @@
;;; Copyright © 2021 Andy Tai <atai@atai.org>
;;; Copyright © 2022 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
+;;; Copyright © 2022 dan <i@dan.games>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2866,3 +2867,35 @@ (define-public recastnavigation
progresses the level, or you may regenerate tiles as the world changes.")
(home-page "https://github.com/recastnavigation/recastnavigation")
(license license:zlib))))
+
+(define-public raylib
+ (package
+ (name "raylib")
+ (version "4.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/raysan5/raylib/")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "14v5iwxh8grywiyw9agpd2sfpyriq1rwwkd9f2s4iihh0z5j7hk8"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:tests? #f)) ;no test
+ (inputs (list alsa-lib
+ libx11
+ libxrandr
+ libxi
+ libxinerama
+ libxcursor
+ mesa))
+ (native-inputs (list pkg-config))
+ (synopsis "C library for videogame programming")
+ (description
+ "raylib is a high-level library for video game programming. It aims to
+ abstract away platform and graphics details, allowing you to focus on
+ writing your game.")
+ (home-page "https://www.raylib.com/")
+ (license license:zlib)))
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#60008: [PATCH] gnu: Add raylib.
2022-12-12 23:59 ` dan
@ 2023-01-17 14:50 ` Ludovic Courtès
0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2023-01-17 14:50 UTC (permalink / raw)
To: dan; +Cc: 60008-done
Hi,
dan <i@dan.games> skribis:
> * gnu/packages/game-development.scm (raylib): New variable.
Applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-01-17 14:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-12 14:11 [bug#60008] [PATCH] gnu: Add raylib dan
2022-12-12 18:20 ` ( via Guix-patches via
2022-12-12 23:59 ` dan
2023-01-17 14:50 ` bug#60008: " Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.