gnu: rust-which-4: Update to 4.3.0.
* gnu/packages/crates-io.scm (rust-which-4): Update to 4.3.0. [synopsis, description]: Improve. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>master
parent
8abe78a890
commit
f3b85cc10c
|
@ -66304,27 +66304,28 @@ using @code{bindgen}.")
|
||||||
(define-public rust-which-4
|
(define-public rust-which-4
|
||||||
(package
|
(package
|
||||||
(name "rust-which")
|
(name "rust-which")
|
||||||
(version "4.2.2")
|
(version "4.3.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "which" version))
|
(uri (crate-uri "which" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1nbsy9f5sn206jzby28if4m4s0m21n97mhk8qd703g3rya77l67a"))))
|
(base32 "0yybp94wikf21vkcl8b6w6l5pnd95nl4fxryz669l4lyxsxiz0qw"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
(list #:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-either" ,rust-either-1)
|
`(("rust-either" ,rust-either-1)
|
||||||
("rust-lazy-static" ,rust-lazy-static-1)
|
|
||||||
("rust-libc" ,rust-libc-0.2)
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-once-cell" ,rust-once-cell-1)
|
||||||
("rust-regex" ,rust-regex-1))))
|
("rust-regex" ,rust-regex-1))))
|
||||||
(home-page "https://github.com/harryfei/which-rs.git")
|
(home-page "https://github.com/harryfei/which-rs.git")
|
||||||
(synopsis "Rust equivalent of Unix command @command{which}")
|
(synopsis "Rust equivalent of @command{which}")
|
||||||
(description
|
(description
|
||||||
"This package provides a Rust equivalent of Unix command @command{which}.
|
"This package provides a cross-platform Rust equivalent of the
|
||||||
It locates installed executable in cross platforms.")
|
Unix @command{which} command. It returns the full path of an installed
|
||||||
|
executable.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-which-3
|
(define-public rust-which-3
|
||||||
|
|
Reference in New Issue