diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:04 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:04 -0500 |
commit | 311d1e5ebff85e9658cb58f5b2adc008df354352 (patch) | |
tree | e9fbb3bfc0036af625ba230be125c4dbd376795b /unlustig.scm | |
parent | 0b03793faab0451114e8a5c4b00c5e68f5581f26 (diff) | |
download | guix-techchud-311d1e5ebff85e9658cb58f5b2adc008df354352.tar.gz guix-techchud-311d1e5ebff85e9658cb58f5b2adc008df354352.tar.bz2 guix-techchud-311d1e5ebff85e9658cb58f5b2adc008df354352.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)))) + |