summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 12:54:19 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 12:54:19 -0600
commit45cb03e1e65c9b428e12ae2193fa29faff4582ca (patch)
treea02fabf615983e5bdf2f7d4d5e1c8c71f02497ec /unlustig.scm
parentc35902dcba6019d9395cec07f87f6a18d9f3c123 (diff)
downloadguix-msglm-45cb03e1e65c9b428e12ae2193fa29faff4582ca.tar.gz
guix-msglm-45cb03e1e65c9b428e12ae2193fa29faff4582ca.tar.bz2
guix-msglm-45cb03e1e65c9b428e12ae2193fa29faff4582ca.zip
add rust-glutin@0.27
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm38
1 files changed, 38 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 35a9f38..65e575a 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -599,3 +599,41 @@ in the Windows API.")
@code{WebGL}) anywhere, and avoid target-specific code.")
(license (list license:expat license:asl2.0))))
+(define-public rust-glutin-0.27
+ (package
+ (name "rust-glutin")
+ (version "0.27.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "glutin" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1w58vcni5sq0h03s5a9rmj2rsraqj3693rgbd2bdjmdqw796qbbn"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-android-glue" ,rust-android-glue-0.2)
+ ("rust-cgl" ,rust-cgl-0.3)
+ ("rust-cocoa" ,rust-cocoa-0.24)
+ ("rust-core-foundation" ,rust-core-foundation-0.9)
+ ("rust-glutin-egl-sys" ,rust-glutin-egl-sys-0.1)
+ ("rust-glutin-emscripten-sys" ,rust-glutin-emscripten-sys-0.1)
+ ("rust-glutin-gles2-sys" ,rust-glutin-gles2-sys-0.1)
+ ("rust-glutin-glx-sys" ,rust-glutin-glx-sys-0.1)
+ ("rust-glutin-wgl-sys" ,rust-glutin-wgl-sys-0.1)
+ ("rust-lazy-static" ,rust-lazy-static-1)
+ ("rust-libloading" ,rust-libloading-0.7)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-objc" ,rust-objc-0.2)
+ ("rust-osmesa-sys" ,rust-osmesa-sys-0.1)
+ ("rust-parking-lot" ,rust-parking-lot-0.11)
+ ("rust-wayland-client" ,rust-wayland-client-0.28)
+ ("rust-wayland-egl" ,rust-wayland-egl-0.28)
+ ("rust-winapi" ,rust-winapi-0.3)
+ ("rust-winit" ,rust-winit-0.25))))
+ (home-page "https://github.com/rust-windowing/glutin")
+ (synopsis "Cross-platform OpenGL context provider")
+ (description
+ "This package provides Cross-platform @code{OpenGL} context provider.")
+ (license license:asl2.0)))
+