me
/
guix
Archived
1
0
Fork 0

gnu: rust-which-4: Update to 4.2.2.

* gnu/packages/crates-io.scm (rust-which-4): Update to 4.2.2.
master
Nicolas Goaziou 2021-12-17 22:44:40 +01:00
parent b3edece7d7
commit a2fcbf9740
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 5 additions and 3 deletions

View File

@ -62869,20 +62869,22 @@ using @code{bindgen}.")
(define-public rust-which-4
(package
(name "rust-which")
(version "4.1.0")
(version "4.2.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "which" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1zixp9631knhnvd8c3si4wn01fldq063s86jxlmwxwmx5kj52mdm"))))
(base32 "1nbsy9f5sn206jzby28if4m4s0m21n97mhk8qd703g3rya77l67a"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-either" ,rust-either-1)
("rust-libc" ,rust-libc-0.2))))
("rust-lazy-static" ,rust-lazy-static-1)
("rust-libc" ,rust-libc-0.2)
("rust-regex" ,rust-regex-1))))
(home-page "https://github.com/harryfei/which-rs.git")
(synopsis "Rust equivalent of Unix command @command{which}")
(description