GNU bug report logs -
#56959
[PATCH] gnu: packages: Add glad2.
Previous Next
Reported by: "(" <paren <at> disroot.org>
Date: Wed, 3 Aug 2022 19:47:02 UTC
Severity: normal
Tags: patch
Done: "(" <paren <at> disroot.org>
Bug is archived. No further changes may be made.
Full log
Message #14 received at 56959 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/gl.scm (glad2): New variable.
---
gnu/packages/gl.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index c740c087dd..50c7b91526 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -17,6 +17,7 @@
;;; Copyright © 2021 Ivan Gankevich <i.gankevich <at> spbu.ru>
;;; Copyright © 2021 John Kehayias <john.kehayias <at> protonmail.com>
;;; Copyright © 2022 Petr Hodina <phodina <at> protonmail.com>
+;;; Copyright © 2022 ( <paren <at> disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -66,6 +67,7 @@ (define-module (gnu packages gl)
#:use-module (guix build-system meson)
#:use-module (guix build-system python)
#:use-module (guix build-system waf)
+ #:use-module (guix gexp)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
@@ -215,6 +217,50 @@ (define-public glad
generate a GL/GLES/EGL/GLX/WGL loader tailored for specific requirements.")
(license license:expat)))
+(define-public glad2
+ (let ((commit "b1051403cf81b984f9fc11cc5916adb5afd34766")
+ (revision "2"))
+ (package
+ (name "glad2")
+ (version (git-version "0.1.36" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Dav1dde/glad")
+ (commit commit)))
+ (sha256
+ (base32
+ "03q3gxg2z9lpx7hqac2fd3ld94avhkg4mdxjfjgrgh97kyx9knpm"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'install-cmake-plugin
+ (lambda _
+ (let ((cmake-dir (string-append #$output
+ "/share/cmake/glad")))
+ (mkdir-p cmake-dir)
+ (copy-file "cmake/CMakeLists.txt"
+ (string-append cmake-dir
+ "/glad.cmake"))))))))
+ (inputs (list python-jinja2))
+ (home-page "https://glad.sh")
+ (synopsis "Multi-language OpenGL/Vulkan loader generator")
+ (description
+ "GLAD 2 is a graphics library binding generator. It generates code
+for calling into Vulkan and GL-related APIs from the official Khronos XML
+specifications. Among the improvements are:
+@enumerate
+@item Better EGL, GLX, and WGL support
+@item Support for generating Vulkan bindings
+@item A Rust frontend
+@item More generator options for enabling features such as the generation
+of header-only C bindings
+@item Improvements for CMake support
+@item Better API
+@end enumerate")
+ (license license:expat))))
+
(define-public s2tc
(package
(name "s2tc")
--
2.37.1
This bug report was last modified 2 years and 196 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.