gnu: Add rust-tectonic-geturl-0.2.

* gnu/packages/crates-io.scm (rust-tectonic-geturl-0.2): New variable.
This commit is contained in:
Nicolas Goaziou 2021-06-07 23:53:26 +02:00
parent cf7800a2c6
commit 6c83b6b2e1
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -43173,6 +43173,34 @@ (define-public rust-tectonic-errors-0.1
#:cargo-inputs
(("rust-anyhow" ,rust-anyhow-1))))))
(define-public rust-tectonic-geturl-0.2
(package
(name "rust-tectonic-geturl")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "tectonic_geturl" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0rwndw6ixwpflrhcvn5mcshpk6gd3b1ihghp6xxsr3dgw59ad1z2"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-cfg-if" ,rust-cfg-if-1)
("rust-curl" ,rust-curl-0.4)
("rust-reqwest" ,rust-reqwest-0.11)
("rust-tectonic-errors" ,rust-tectonic-errors-0.2)
("rust-tectonic-status-base" ,rust-tectonic-status-base-0.1))))
(home-page
"https://tectonic-typesetting.github.io/")
(synopsis "Interface for HTTP GETs and byte-range requests")
(description
"This crate is part of the Tectonic project. It provides an
interface for fetching URLs using one of several HTTP backends.")
(license license:expat)))
(define-public rust-tectonic-status-base-0.1
(package
(name "rust-tectonic-status-base")