gnu: Add rust-servo-arc-0.2.
* gnu/packages/crates-io.scm (rust-servo-arc-0.2): New variable. (rust-servo-arc-0.1): Inherit from rust-servo-arc-0.2.
This commit is contained in:
parent
32ad241955
commit
38cbcdca8f
1 changed files with 28 additions and 10 deletions
|
@ -61585,19 +61585,17 @@ for data that potentially contains secrets (e.g. cryptographic keys).")
|
||||||
(("rust-quote" ,rust-quote-0.6)
|
(("rust-quote" ,rust-quote-0.6)
|
||||||
("rust-syn" ,rust-syn-0.15))))))
|
("rust-syn" ,rust-syn-0.15))))))
|
||||||
|
|
||||||
(define-public rust-servo-arc-0.1
|
(define-public rust-servo-arc-0.2
|
||||||
(package
|
(package
|
||||||
(name "rust-servo-arc")
|
(name "rust-servo-arc")
|
||||||
(version "0.1.1")
|
(version "0.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "servo-arc" version))
|
(uri (crate-uri "servo-arc" version))
|
||||||
(file-name
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(string-append name "-" version ".tar.gz"))
|
(sha256
|
||||||
(sha256
|
(base32 "0hgp453zvrj7ry501jhxlcph0hc42gc26zyfwn8ys3yziwps8anm"))))
|
||||||
(base32
|
|
||||||
"0cjljr9znwahry6p95xvd3p4pmy24wlf6gbfidnmglg002w3i0nr"))))
|
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
|
@ -61611,6 +61609,26 @@ for data that potentially contains secrets (e.g. cryptographic keys).")
|
||||||
functionality and without weak references.")
|
functionality and without weak references.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-servo-arc-0.1
|
||||||
|
(package
|
||||||
|
(inherit rust-servo-arc-0.2)
|
||||||
|
(name "rust-servo-arc")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "servo-arc" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0cjljr9znwahry6p95xvd3p4pmy24wlf6gbfidnmglg002w3i0nr"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-nodrop" ,rust-nodrop-0.1)
|
||||||
|
("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))))
|
||||||
|
|
||||||
(define-public rust-serial-test-derive-0.4
|
(define-public rust-serial-test-derive-0.4
|
||||||
(package
|
(package
|
||||||
(name "rust-serial-test-derive")
|
(name "rust-serial-test-derive")
|
||||||
|
|
Reference in a new issue