diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:53:53 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:53:53 -0600 |
commit | c35902dcba6019d9395cec07f87f6a18d9f3c123 (patch) | |
tree | e9fbb3bfc0036af625ba230be125c4dbd376795b /unlustig.scm | |
parent | 9f9ae2bc65f372db56b92018e048b815e7852037 (diff) | |
download | guix-msglm-c35902dcba6019d9395cec07f87f6a18d9f3c123.tar.gz guix-msglm-c35902dcba6019d9395cec07f87f6a18d9f3c123.tar.bz2 guix-msglm-c35902dcba6019d9395cec07f87f6a18d9f3c123.zip |
add rust-glow@0.11
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 6f94143..35a9f38 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -574,3 +574,28 @@ in the Windows API.") "This package provides High-level Text-To-Speech (TTS) interface.") (license license:expat))) +(define-public rust-glow-0.11 + (package + (name "rust-glow") + (version "0.11.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "glow" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "068rqvczh691385gzwqqsclp8lr0zq3276x2hfnbh6ba2mvmigfq")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-js-sys" ,rust-js-sys-0.3) + ("rust-slotmap" ,rust-slotmap-1) + ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2) + ("rust-web-sys" ,rust-web-sys-0.3)))) + (home-page "https://github.com/grovesNL/glow.git") + (synopsis + "GL on Whatever: a set of bindings to run GL (Open GL, OpenGL ES, and WebGL) anywhere, and avoid target-specific code") + (description + "This package provides GL on Whatever: a set of bindings to run GL (Open GL, @code{OpenGL} ES, and +@code{WebGL}) anywhere, and avoid target-specific code.") + (license (list license:expat license:asl2.0)))) + |