dannym pushed a commit to branch master in repository guix. commit 1c3d364970fc79657e5f5f10624f9bbbfe9fc195 Author: Danny Milosavljevic <dan...@friendly-machines.com> AuthorDate: Mon May 19 01:44:06 2025 +0200
gnu: rust-opener: Update to 0.6.1. * gnu/packages/crates-io.scm (rust-opener-0.6): New variable. Change-Id: I2162e66a21b3c4c136893b814309784b2c613d6d --- gnu/packages/crates-io.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index a98576433c..c1390c626c 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -50537,6 +50537,31 @@ the system.") (("rust-pathdiff" ,rust-pathdiff-0.2) ("rust-windows-sys" ,rust-windows-sys-0.36)))))) +(define-public rust-opener-0.6 + (package + (name "rust-opener") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "opener" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1217aqxl8srr7v0bcc174yf5apaxjmzg0j62x8kb772g2yvdqqkc")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs (("rust-bstr" ,rust-bstr-1) + ("rust-dbus" ,rust-dbus-0.9) + ("rust-normpath" ,rust-normpath-1) + ("rust-url" ,rust-url-2) + ("rust-winapi" ,rust-winapi-0.3)))) + (home-page "https://github.com/Seeker14491/opener") + (synopsis "Open a file or link using the system default program") + (description "This crate provides the ability to open a file or link with +the default program configured on the system.") + (license (list license:expat license:asl2.0)))) + (define-public rust-opener-0.7 (package (name "rust-opener")