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 | 3bf8c93a56137f2ee8400328eacb3c1d801829f9 (patch) | |
tree | aac2b89d477c09651fc34653913f3fae8bd3c153 | |
parent | 9046c1dd59d081e7118c414946dbba88ce32c936 (diff) | |
download | guix-techchud-3bf8c93a56137f2ee8400328eacb3c1d801829f9.tar.gz guix-techchud-3bf8c93a56137f2ee8400328eacb3c1d801829f9.tar.bz2 guix-techchud-3bf8c93a56137f2ee8400328eacb3c1d801829f9.zip |
add rust-gl@0.5
-rw-r--r-- | unlustig.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 6c205ee..9b8a39c 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1175,3 +1175,24 @@ binding to JVM APIs from Rust.") (description "This package provides Rust safe bindings for XCB.") (license license:expat))) +(define-public rust-gl-0.5 + (package + (name "rust-gl") + (version "0.5.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "gl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1a1xjar29zpw0lksqcskcf1x04zzs230x5qwchiigkpfriwykss9")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-gl-generator" ,rust-gl-generator-0.4) + ("rust-khronos-api" ,rust-khronos-api-1)) + #:cargo-development-inputs (("rust-glutin" ,rust-glutin-0.4)))) + (home-page "https://github.com/brendanzab/gl-rs/") + (synopsis "OpenGL bindings") + (description "This package provides @code{OpenGL} bindings.") + (license license:asl2.0))) + |