me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-infer-0.2.

* gnu/packages/crates-io.scm (rust-infer-0.2): New variable.
master
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
1 changed files with 20 additions and 0 deletions

View File

@ -15503,6 +15503,26 @@ or numerical index. A corresponding hash set type is also provided.")
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")