summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--unlustig.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index e84445a..69c02f1 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -354,3 +354,28 @@ Unix, @code{macOS} and Windows.")
in the Windows API.")
(license license:expat)))
+(define-public rust-egui-0.15
+ (package
+ (name "rust-egui")
+ (version "0.15.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "egui" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1rzswl25w2ryfrkijm7fp7nfzmxl8sx1rfqp9mpzrjs36dm4338w"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-ahash" ,rust-ahash-0.7)
+ ("rust-epaint" ,rust-epaint-0.15)
+ ("rust-nohash-hasher" ,rust-nohash-hasher-0.2)
+ ("rust-ron" ,rust-ron-0.7)
+ ("rust-serde" ,rust-serde-1))))
+ (home-page "https://github.com/emilk/egui")
+ (synopsis
+ "An easy-to-use immediate mode GUI that runs on both web and native")
+ (description
+ "This package provides An easy-to-use immediate mode GUI that runs on both web and native.")
+ (license (list license:expat license:asl2.0))))
+