diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:53:17 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:53:17 -0600 |
commit | 4fab5c3b2e7f5692d7f9c834152797bf4033596f (patch) | |
tree | 28351f471ac05e8972e5e360329ed5357c58a6d7 /unlustig.scm | |
parent | 494f3dbd49458151196ab62532a38b93693fcfb6 (diff) | |
download | guix-msglm-4fab5c3b2e7f5692d7f9c834152797bf4033596f.tar.gz guix-msglm-4fab5c3b2e7f5692d7f9c834152797bf4033596f.tar.bz2 guix-msglm-4fab5c3b2e7f5692d7f9c834152797bf4033596f.zip |
add rust-rfd@0.5
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 998f999..8a1a213 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -505,3 +505,37 @@ in the Windows API.") "This package provides Backend-agnostic interface for writing apps using egui.") (license (list license:expat license:asl2.0)))) +(define-public rust-rfd-0.5 + (package + (name "rust-rfd") + (version "0.5.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "rfd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1aljg6k3i9mzpzxl9abfn6ywsclpfb90zrbcplpb08rs9s4cbjia")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-block" ,rust-block-0.1) + ("rust-dispatch" ,rust-dispatch-0.2) + ("rust-glib-sys" ,rust-glib-sys-0.14) + ("rust-gobject-sys" ,rust-gobject-sys-0.14) + ("rust-gtk-sys" ,rust-gtk-sys-0.14) + ("rust-js-sys" ,rust-js-sys-0.3) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-objc" ,rust-objc-0.2) + ("rust-objc-foundation" ,rust-objc-foundation-0.1) + ("rust-objc-id" ,rust-objc-id-0.1) + ("rust-raw-window-handle" ,rust-raw-window-handle-0.3) + ("rust-wasm-bindgen" ,rust-wasm-bindgen-0.2) + ("rust-wasm-bindgen-futures" ,rust-wasm-bindgen-futures-0.4) + ("rust-web-sys" ,rust-web-sys-0.3) + ("rust-winapi" ,rust-winapi-0.3)) + #:cargo-development-inputs (("rust-futures" ,rust-futures-0.3)))) + (home-page "https://github.com/PolyMeilex/rfd") + (synopsis "Rusty File Dialog") + (description "This package provides Rusty File Dialog.") + (license license:expat))) + |