;;; GNU Guix --- Functional package management for GNU
;;;
;;; Copyright © 2022 (unmatched parenthesis <paren@disroot.org>
;;;
;;; This file is not part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (guixrus packages glad2)
#:use-module (guix build-system python)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (gnu packages python-xyz))
(define-public glad2
(let ((commit "68c595d307697a60749a41425e64a1e2120b5716")
(revision "1"))
(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 "0cyr4cn5pa8cdv2ixwqa2qdrghxk392d3d11if4x75b7f62mm41z"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'install 'install-cmakelists.txt
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(share (string-append out "/share/" ,name)))
(install-file "cmake/CMakeLists.txt" share)))))))
(inputs (list python-jinja2))
(home-page "https://glad.sh")
(synopsis "Multi-language GL/GLES/EGL/GLX/WGL/Vulkan loader generator")
(description "GLAD 2 is an improved iteration of the GLAD graphics API loader-generator. Among the improvements are:
@itemize
@item Better EGL, GLX, and WGL support
@item Vulkan support
@item Rust support
@item More generator options (e.g. an option to make GLAD header-only)
@item Better XML parsing
@item Better Web-Generator
@item Better CMake support
@item Better examples
@item Better CLI
@item Better loader
@item Better API
@end itemize")
(license license:expat))))