diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:10:00 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:10:00 -0600 |
commit | a7c4ac23ac95a8f13140f87b5e77668a9d3928c7 (patch) | |
tree | 09885efcefe4b0483b66fae652e65db1c7c62eec /unlustig.scm | |
parent | 3a6025ebadc0f6371d5d549a3da5254dad426b9c (diff) | |
download | guix-msglm-a7c4ac23ac95a8f13140f87b5e77668a9d3928c7.tar.gz guix-msglm-a7c4ac23ac95a8f13140f87b5e77668a9d3928c7.tar.bz2 guix-msglm-a7c4ac23ac95a8f13140f87b5e77668a9d3928c7.zip |
add rust-emath@0.15
Diffstat (limited to 'unlustig.scm')
-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)))) + |