diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
commit | d12825878ca5eb867ea6798bd68798a129e4f76c (patch) | |
tree | 30f05f5c9e3688a6f3d72ac8182b032372c7d091 /unlustig.scm | |
parent | 8568b5c4897d22f12584055aef3caf450d0664c0 (diff) | |
download | guix-techchud-d12825878ca5eb867ea6798bd68798a129e4f76c.tar.gz guix-techchud-d12825878ca5eb867ea6798bd68798a129e4f76c.tar.bz2 guix-techchud-d12825878ca5eb867ea6798bd68798a129e4f76c.zip |
add rust-gl_generator@0.5
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 246fc11..0cd0d8a 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1503,3 +1503,26 @@ binding to JVM APIs from Rust.") "This package provides Toolkit for making client wayland applications.") (license license:expat))) +(define-public rust-gl-generator-0.5 + (package + (name "rust-gl-generator") + (version "0.5.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "gl_generator" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0756xj1inkh0j5mcigsyyl5amhg954hkd13av4d9wbnmlcmvzb77")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-khronos-api" ,rust-khronos-api-1) + ("rust-log" ,rust-log-0.3) + ("rust-xml-rs" ,rust-xml-rs-0.6)))) + (home-page "https://github.com/brendanzab/gl-rs/") + (synopsis + "Code generators for creating bindings to the Khronos OpenGL APIs") + (description + "This package provides Code generators for creating bindings to the Khronos @code{OpenGL} APIs.") + (license license:asl2.0))) + |