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 | 7a0acc07eb62d4b4240ac750f8e6d0676001a22b (patch) | |
tree | 22639a3085e3dd99af0970605445d37ab0719292 | |
parent | 49ccdc5a0df6ad8a1dd43d03a77faf522e079edb (diff) | |
download | guix-techchud-7a0acc07eb62d4b4240ac750f8e6d0676001a22b.tar.gz guix-techchud-7a0acc07eb62d4b4240ac750f8e6d0676001a22b.tar.bz2 guix-techchud-7a0acc07eb62d4b4240ac750f8e6d0676001a22b.zip |
add rust-eframe@0.15
-rw-r--r-- | unlustig.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 74fc635..6f403ff 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -247,3 +247,31 @@ "This package provides Catergorise ANSI - ANSI escape code parser and categoriser.") (license license:expat))) +(define-public rust-eframe-0.15 + (package + (name "rust-eframe") + (version "0.15.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "eframe" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0907ksmla3szpcgzk17n2br0vv9d7and5qvfzgaj78hap684621s")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-egui" ,rust-egui-0.15) + ("rust-egui-winit" ,rust-egui-winit-0.15) + ("rust-egui-glium" ,rust-egui-glium-0.15) + ("rust-egui-glow" ,rust-egui-glow-0.15) + ("rust-egui-web" ,rust-egui-web-0.15) + ("rust-epi" ,rust-epi-0.15)) + #:cargo-development-inputs (("rust-image" ,rust-image-0.23) + ("rust-rfd" ,rust-rfd-0.5)))) + (home-page "https://github.com/emilk/egui/tree/master/crates/eframe") + (synopsis + "egui framework - write GUI apps that compiles to web and/or natively") + (description + "This package provides egui framework - write GUI apps that compiles to web and/or natively.") + (license (list license:expat license:asl2.0)))) + |