mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 10:09:15 -05:00
gnu: Add rust-data-url-0.2.
* gnu/packages/crates-io.scm (rust-data-url-0.2): New variable. (rust-data-url-0.1): Inherit from rust-data-url-0.2.
This commit is contained in:
parent
846d143870
commit
271b2e6a7d
1 changed files with 25 additions and 7 deletions
|
@ -18572,8 +18572,32 @@ (define-public rust-data-encoding-2
|
||||||
hexadecimal, base32, and base64.")
|
hexadecimal, base32, and base64.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-data-url-0.2
|
||||||
|
(package
|
||||||
|
(name "rust-data-url")
|
||||||
|
(version "0.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "data-url" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "19828d6jby17ghi7vr0zia9sy3hlvvjbngrcsllmfh2zfg1kjx4d"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-development-inputs
|
||||||
|
(("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-serde-json" ,rust-serde-json-1)
|
||||||
|
("rust-tester" ,rust-tester-0.9))))
|
||||||
|
(home-page "https://github.com/servo/rust-url")
|
||||||
|
(synopsis "Processing of data: URL according to WHATWG's Fetch Standard")
|
||||||
|
(description
|
||||||
|
"Processing of data: URL according to WHATWG's Fetch Standard.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-data-url-0.1
|
(define-public rust-data-url-0.1
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-data-url-0.2)
|
||||||
(name "rust-data-url")
|
(name "rust-data-url")
|
||||||
(version "0.1.1")
|
(version "0.1.1")
|
||||||
(source
|
(source
|
||||||
|
@ -18585,19 +18609,13 @@ (define-public rust-data-url-0.1
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14z15yiyklp5dv0k0q6pd83irrn0y8hj9y3fj17akkrbf37byc1s"))))
|
"14z15yiyklp5dv0k0q6pd83irrn0y8hj9y3fj17akkrbf37byc1s"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-matches" ,rust-matches-0.1))
|
(("rust-matches" ,rust-matches-0.1))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-rustc-test" ,rust-rustc-test-0.3)
|
(("rust-rustc-test" ,rust-rustc-test-0.3)
|
||||||
("rust-serde" ,rust-serde-1)
|
("rust-serde" ,rust-serde-1)
|
||||||
("rust-serde-json" ,rust-serde-json-1))))
|
("rust-serde-json" ,rust-serde-json-1))))))
|
||||||
(home-page "https://github.com/servo/rust-url")
|
|
||||||
(synopsis "Processing of data: URL according to WHATWG's Fetch Standard")
|
|
||||||
(description
|
|
||||||
"Processing of data: URL according to WHATWG's Fetch Standard.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-datetime-0.5
|
(define-public rust-datetime-0.5
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue