From 76d2b5c1b8bab3275f97367cf8e4489667c1cf0f Mon Sep 17 00:00:00 2001 From: msglm Date: Wed, 13 Mar 2024 04:56:27 -0500 Subject: fix unlustig to no longer break guix pull --- unlustig.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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") -- cgit v1.2.3