diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:13:08 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:13:08 -0600 |
commit | 7223ee0dc0fa8642e088974ae1726192dbe5050b (patch) | |
tree | aac2b89d477c09651fc34653913f3fae8bd3c153 /unlustig.scm | |
parent | 043d9215b8e59fc344376a210a215c3b712cc973 (diff) | |
download | guix-msglm-7223ee0dc0fa8642e088974ae1726192dbe5050b.tar.gz guix-msglm-7223ee0dc0fa8642e088974ae1726192dbe5050b.tar.bz2 guix-msglm-7223ee0dc0fa8642e088974ae1726192dbe5050b.zip |
add rust-gl@0.5
Diffstat (limited to 'unlustig.scm')
-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))) + |