diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:55:41 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:55:41 -0600 |
commit | c7df5229cbe55d4c20b4c7f48fdef9bc9cb47bb1 (patch) | |
tree | d51182ae439710654f775ad37821664a5d65aa84 | |
parent | d53cb41e161e66a65dc16672a5b7f52dfa7457da (diff) | |
download | guix-msglm-c7df5229cbe55d4c20b4c7f48fdef9bc9cb47bb1.tar.gz guix-msglm-c7df5229cbe55d4c20b4c7f48fdef9bc9cb47bb1.tar.bz2 guix-msglm-c7df5229cbe55d4c20b4c7f48fdef9bc9cb47bb1.zip |
add rust-epaint@0.15
-rw-r--r-- | unlustig.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index afccda7..081ad92 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -771,3 +771,31 @@ the OS-level clipboard.") "This package provides Cross-platform window creation library.") (license license:asl2.0))) +(define-public rust-epaint-0.15 + (package + (name "rust-epaint") + (version "0.15.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "epaint" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0c82zq2b3r7idjp5ixs2nw4nv2vyav4gwpiakp4k5ldvicxlvfqn")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-ab-glyph" ,rust-ab-glyph-0.2) + ("rust-ahash" ,rust-ahash-0.7) + ("rust-atomic-refcell" ,rust-atomic-refcell-0.1) + ("rust-bytemuck" ,rust-bytemuck-1) + ("rust-cint" ,rust-cint-0.2) + ("rust-emath" ,rust-emath-0.15) + ("rust-nohash-hasher" ,rust-nohash-hasher-0.2) + ("rust-parking-lot" ,rust-parking-lot-0.11) + ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/emilk/egui/tree/master/crates/epaint") + (synopsis "Minimal 2D graphics library for GUI work") + (description + "This package provides Minimal 2D graphics library for GUI work.") + (license (list license:expat license:asl2.0)))) + |