mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 03:44:06 -05:00
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
This commit is contained in:
parent
16e6cc0411
commit
65283c4fb2
1 changed files with 34 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue