gnu: Add rust-infer-0.2.

* gnu/packages/crates-io.scm (rust-infer-0.2): New variable.
This commit is contained in:
Nicolas Goaziou 2020-12-24 11:50:06 +01:00
parent 03487c3595
commit c3af32acb9
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -15503,6 +15503,26 @@ (define-public rust-indicatif-0.15
Rust.")
(license license:expat)))
(define-public rust-infer-0.2
(package
(name "rust-infer")
(version "0.2.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "infer" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1b4ziqcv0d1wga5yfqf620dkgzijsdw3ylnzq61bfaxla2d85sb4"))))
(build-system cargo-build-system)
(arguments `(#:tests? #false)) ;missing files
(home-page "https://github.com/bojand/infer")
(synopsis "Infer file types based on its magic number signature")
(description
"This crate infers a file types based on its magic number
signature.")
(license license:expat)))
(define-public rust-inflate-0.4
(package
(name "rust-inflate")