diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | 286c99559102898280aef6217162c65be9c57bda (patch) | |
tree | 09885efcefe4b0483b66fae652e65db1c7c62eec | |
parent | 2e5dce942acfb5e448ce0d0e54413d7b7f66e4ca (diff) | |
download | guix-techchud-286c99559102898280aef6217162c65be9c57bda.tar.gz guix-techchud-286c99559102898280aef6217162c65be9c57bda.tar.bz2 guix-techchud-286c99559102898280aef6217162c65be9c57bda.zip |
add rust-emath@0.15
-rw-r--r-- | unlustig.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 925e2c3..66c1c05 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1019,3 +1019,24 @@ the OS-level clipboard.") interoperation between crates in Rust.") (license (list license:expat license:asl2.0 license:zlib)))) +(define-public rust-emath-0.15 + (package + (name "rust-emath") + (version "0.15.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "emath" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0vpbf80j94jhlxvrgmnq5vavjzry2lypr59jpyiacpfm4alsm894")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-bytemuck" ,rust-bytemuck-1) + ("rust-mint" ,rust-mint-0.5) + ("rust-serde" ,rust-serde-1)))) + (home-page "https://github.com/emilk/egui/tree/master/crates/emath") + (synopsis "Minimal 2D math library for GUI work") + (description "This package provides Minimal 2D math library for GUI work.") + (license (list license:expat license:asl2.0)))) + |