diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | 7214633a8c4dc4485132d70290cc7876cd910038 (patch) | |
tree | e74e447d88723b2bff92613564b6554be85436d7 | |
parent | 1442e42789e2179e81a4ec3d5b5eec8862f0e072 (diff) | |
download | guix-techchud-7214633a8c4dc4485132d70290cc7876cd910038.tar.gz guix-techchud-7214633a8c4dc4485132d70290cc7876cd910038.tar.bz2 guix-techchud-7214633a8c4dc4485132d70290cc7876cd910038.zip |
add rust-gl_generator@0.4
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 64d5563..6a9e6a7 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1309,3 +1309,26 @@ binding to JVM APIs from Rust.") "This package provides Open URLs in web browsers available on a platform.") (license (list license:expat license:asl2.0)))) +(define-public rust-gl-generator-0.4 + (package + (name "rust-gl-generator") + (version "0.4.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "gl_generator" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "048hnacz40sabbq50nccjf5qdiq9hw1wq0sbbmkkzpksdhnmp41p")))) + (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.2)))) + (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))) + |