diff options
-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))) + |