summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2024-03-13 04:56:27 -0500
committermsglm <msglm@techchud.xyz>2024-03-13 04:56:27 -0500
commit76d2b5c1b8bab3275f97367cf8e4489667c1cf0f (patch)
tree2b4c1b9b8780283b6b76b635a14d4a54f538783d
parent970b740b4569d984f49f45dc950d3f71a8869fdd (diff)
downloadguix-msglm-76d2b5c1b8bab3275f97367cf8e4489667c1cf0f.tar.gz
guix-msglm-76d2b5c1b8bab3275f97367cf8e4489667c1cf0f.tar.bz2
guix-msglm-76d2b5c1b8bab3275f97367cf8e4489667c1cf0f.zip
fix unlustig to no longer break guix pull
-rw-r--r--unlustig.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 1879db7..5ba95ed 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -337,6 +337,29 @@ right with surrounding punctuation like parentheses.")
(description "Minimal 2D math library for GUI work")
(license (list expat 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
+ "Code generators for creating bindings to the Khronos @code{OpenGL} APIs.")
+ (license asl2.0)))
+
(define-public rust-gl-0.5
(package
(name "rust-gl")