gnu: Add rust-core-foundation-sys-0.7.

* gnu/packages/crates-io.scm (rust-core-foundation-sys-0.7): New variable.
(rust-core-foundation-sys-0.6): Inherit from rust-core-foundation-sys-0.6.
This commit is contained in:
Arun Isaac 2020-09-16 11:04:34 +05:30
parent 99874bf634
commit 7ac6d407f1
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -3877,26 +3877,39 @@ (define-public rust-core-foundation-0.6
"Bindings to Core Foundation for macOS.")
(license (list license:expat license:asl2.0))))
(define-public rust-core-foundation-sys-0.7
(package
(name "rust-core-foundation-sys")
(version "0.7.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "core-foundation-sys" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1ghrg46h4ci306agr2vwm28w6gb5l455nzp61y2zkhwfs49p4nis"))))
(build-system cargo-build-system)
(home-page "https://github.com/servo/core-foundation-rs")
(synopsis "Bindings to Core Foundation for macOS")
(description "This package provides bindings to Core Foundation for
macOS.")
(license (list license:expat license:asl2.0))))
(define-public rust-core-foundation-sys-0.6
(package
(inherit rust-core-foundation-sys-0.7)
(name "rust-core-foundation-sys")
(version "0.6.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "core-foundation-sys" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"0fzsw1j9g1x598yhwklg59l15hwzc0pyvs01w9fg2kin4598mjp7"))))
(build-system cargo-build-system)
(arguments '(#:skip-build? #t))
(home-page "https://github.com/servo/core-foundation-rs")
(synopsis "Bindings to Core Foundation for OS X")
(description
"Bindings to Core Foundation for OS X.")
(license (list license:asl2.0
license:expat))))
(origin
(method url-fetch)
(uri (crate-uri "core-foundation-sys" version))
(file-name (string-append name "-" version ".crate"))
(sha256
(base32
"0fzsw1j9g1x598yhwklg59l15hwzc0pyvs01w9fg2kin4598mjp7"))))))
(define-public rust-core-text-13
(package