diff options
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index a3f167f..e84445a 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -331,3 +331,26 @@ Unix, @code{macOS} and Windows.") "This package provides a library for managing temporary files and directories.") (license (list license:expat license:asl2.0)))) +(define-public rust-wfd-0.1 + (package + (name "rust-wfd") + (version "0.1.7") + (source + (origin + (method url-fetch) + (uri (crate-uri "wfd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1a6p8651l0q9dvzipam91nwv56n2ijxfpqg318dbzrdacw5h84z7")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://www.github.com/ben-wallis/wfd") + (synopsis + "simple to use abstraction over the Open and Save dialogs in the Windows API") + (description + "This package provides a simple to use abstraction over the Open and Save dialogs +in the Windows API.") + (license license:expat))) + |