From 65283c4fb2009b00170ec2960d6d005471d5070b Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 24 Oct 2023 08:48:23 +0300 Subject: [PATCH] gnu: Add rust-opener-0.6. * gnu/packages/crates-io.scm (rust-opener-0.6): New variable. (rust-opener-0.5): Inherit from rust-opener-0.6. Change-Id: Id5b7b9dd2b94df5ea5b81dc9898253acd4e6be05 --- gnu/packages/crates-io.scm | 41 +++++++++++++++++++++++++++++++------- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 5ef93b9617..fd0280dab6 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -47123,8 +47123,41 @@ (define-public rust-open-1 (("rust-pathdiff" ,rust-pathdiff-0.2) ("rust-winapi" ,rust-winapi-0.3)))))) +(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")) + (snippet + #~(begin (use-modules (guix build utils)) + ;; Don't demand vendored dbus. + (substitute* "Cargo.toml" + ((".*vendored.*") "")))))) + (build-system cargo-build-system) + (arguments + `(#: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)) + #:cargo-development-inputs + (("rust-version-sync" ,rust-version-sync-0.9)))) + (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.5 (package + (inherit rust-opener-0.6) (name "rust-opener") (version "0.5.2") (source @@ -47134,18 +47167,12 @@ (define-public rust-opener-0.5 (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "01ghahdn64lw4whj0p70vmzivrdlmca2629gplalq99pirkiag19")))) - (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-bstr" ,rust-bstr-1) ("rust-winapi" ,rust-winapi-0.3)) #:cargo-development-inputs - (("rust-version-sync" ,rust-version-sync-0.9)))) - (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)))) + (("rust-version-sync" ,rust-version-sync-0.9)))))) (define-public rust-openpgp-cert-d-0.1 (package