diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-12-04 13:59:21 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-12-04 13:59:21 +0100 |
commit | aa51460fca0917350124d1455de7ae9d3bfb131a (patch) | |
tree | 82f2926b8926113d5822e87458818485cbec079b | |
parent | d378d0c22979790ed908235b545cee33c5ac2426 (diff) | |
download | guix-aa51460fca0917350124d1455de7ae9d3bfb131a.tar.gz |
gnu: Add rust-open-1.
* gnu/packages/crates-io.scm (rust-open-1): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index d5599ff5dd..61a2a0bb40 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -17823,6 +17823,28 @@ You probably don't want to link to this crate directly; instead check out the (base32 "02942l2gc7w5r4js7i9063x99szic5mzzk1055j83v4diqpbpxck")))))) +(define-public rust-open-1 + (package + (name "rust-open") + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "open" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0j6ci7jc2aabvw0rvq7a51sw9s2rk3mfsq0s5zjakzjf27q3na3w")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/Byron/open-rs") + (synopsis "Open a path or URL using the program configured on the system") + (description + "Use this library to open a path or URL using the program configured on +the system.") + (license license:expat))) + (define-public rust-openssl-0.10 (package (name "rust-openssl") |