gnu: Add rust-core-foundation-0.9.
* gnu/packages/crates-io.scm (rust-core-foundation-0.9): New variable. (rust-core-foundation-0.7): inherit from above.
This commit is contained in:
parent
b970c0ed93
commit
0b36bd01e4
1 changed files with 28 additions and 11 deletions
|
@ -4684,32 +4684,49 @@ management. It supports signed and private (encrypted, authenticated) jars.")
|
||||||
intrinsics.")
|
intrinsics.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-core-foundation-0.9
|
||||||
|
(package
|
||||||
|
(name "rust-core-foundation")
|
||||||
|
(version "0.9.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "core-foundation" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0qhackx0i914nbhcwi6bbxnyyqqldgxc046gviak3a3f8apf528a"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ;tests fail with a lot of "undefined reference"
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-chrono" ,rust-chrono-0.4)
|
||||||
|
("rust-core-foundation-sys" ,rust-core-foundation-sys-0.8)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-uuid" ,rust-uuid-0.5))))
|
||||||
|
(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-0.7
|
(define-public rust-core-foundation-0.7
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-core-foundation-0.9)
|
||||||
(name "rust-core-foundation")
|
(name "rust-core-foundation")
|
||||||
(version "0.7.0")
|
(version "0.7.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "core-foundation" version))
|
(uri (crate-uri "core-foundation" version))
|
||||||
(file-name
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0wbias8f0m5kyn2pcksi0h58fdslams6nmf16w78fgn42dx4rljp"))))
|
||||||
"0wbias8f0m5kyn2pcksi0h58fdslams6nmf16w78fgn42dx4rljp"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-chrono" ,rust-chrono-0.4)
|
(("rust-chrono" ,rust-chrono-0.4)
|
||||||
("rust-core-foundation-sys" ,rust-core-foundation-sys-0.7)
|
("rust-core-foundation-sys" ,rust-core-foundation-sys-0.7)
|
||||||
("rust-libc" ,rust-libc-0.2)
|
("rust-libc" ,rust-libc-0.2)
|
||||||
("rust-uuid" ,rust-uuid-0.5))))
|
("rust-uuid" ,rust-uuid-0.5))))))
|
||||||
(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-0.6
|
(define-public rust-core-foundation-0.6
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue