summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
commit1442e42789e2179e81a4ec3d5b5eec8862f0e072 (patch)
treeb7a444bb8288277e9091defdd5fd2b8517ba6ddc /unlustig.scm
parent32349d1f0a820e2b9227cf65bd9206b7b855a48f (diff)
downloadguix-techchud-1442e42789e2179e81a4ec3d5b5eec8862f0e072.tar.gz
guix-techchud-1442e42789e2179e81a4ec3d5b5eec8862f0e072.tar.bz2
guix-techchud-1442e42789e2179e81a4ec3d5b5eec8862f0e072.zip
add rust-webbrowser@0.5
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index e41a6ff..64d5563 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -1287,3 +1287,25 @@ binding to JVM APIs from Rust.")
(description "This package provides Criterion's plotting library.")
(license (list license:expat license:asl2.0))))
+(define-public rust-webbrowser-0.5
+ (package
+ (name "rust-webbrowser")
+ (version "0.5.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "webbrowser" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "12hmi768mnpssfh9w61ys75v706jj3pcy4fliqq21dnnj1j1bbgc"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-web-sys" ,rust-web-sys-0.3)
+ ("rust-widestring" ,rust-widestring-0.4)
+ ("rust-winapi" ,rust-winapi-0.3))))
+ (home-page "https://github.com/amodm/webbrowser-rs")
+ (synopsis "Open URLs in web browsers available on a platform")
+ (description
+ "This package provides Open URLs in web browsers available on a platform.")
+ (license (list license:expat license:asl2.0))))
+