gnu: Add rust-cocoa-0.22.
* gnu/packages/crates-io.scm (rust-cocoa-0.22): New variable. (rust-cocoa-0.19): Inherit from above.master
parent
58b30a50a9
commit
feea5f4e61
|
@ -5993,8 +5993,36 @@ CMAKE environmental variable is set.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-cocoa-0.22
|
||||||
|
(package
|
||||||
|
(name "rust-cocoa")
|
||||||
|
(version "0.22.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "cocoa" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "19qyyv01yzrm6aahn6cdxvb4jhl6v4fj0cgqkxmq38i7hq3dqzv6"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-bitflags" ,rust-bitflags-1)
|
||||||
|
("rust-block" ,rust-block-0.1)
|
||||||
|
("rust-core-foundation" ,rust-core-foundation-0.9)
|
||||||
|
("rust-core-graphics" ,rust-core-graphics-0.21)
|
||||||
|
("rust-foreign-types" ,rust-foreign-types-0.3)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-objc" ,rust-objc-0.2))))
|
||||||
|
(home-page "https://github.com/servo/core-foundation-rs")
|
||||||
|
(synopsis "Bindings to Cocoa for macOS")
|
||||||
|
(description "This package provides bindings to Cocoa for macOS.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-cocoa-0.19
|
(define-public rust-cocoa-0.19
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-cocoa-0.22)
|
||||||
(name "rust-cocoa")
|
(name "rust-cocoa")
|
||||||
(version "0.19.1")
|
(version "0.19.1")
|
||||||
(source
|
(source
|
||||||
|
@ -6006,7 +6034,6 @@ CMAKE environmental variable is set.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0034vahbfv574q4b63rj241b8rnka5cjiqsqc6wiggnin9l7g7zj"))))
|
"0034vahbfv574q4b63rj241b8rnka5cjiqsqc6wiggnin9l7g7zj"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t ; only for macOS
|
`(#:skip-build? #t ; only for macOS
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
|
@ -6016,11 +6043,7 @@ CMAKE environmental variable is set.")
|
||||||
("rust-core-graphics" ,rust-core-graphics-0.17)
|
("rust-core-graphics" ,rust-core-graphics-0.17)
|
||||||
("rust-foreign-types" ,rust-foreign-types-0.3)
|
("rust-foreign-types" ,rust-foreign-types-0.3)
|
||||||
("rust-libc" ,rust-libc-0.2)
|
("rust-libc" ,rust-libc-0.2)
|
||||||
("rust-objc" ,rust-objc-0.2))))
|
("rust-objc" ,rust-objc-0.2))))))
|
||||||
(home-page "https://github.com/servo/core-foundation-rs")
|
|
||||||
(synopsis "Bindings to Cocoa for macOS")
|
|
||||||
(description "Bindings to Cocoa for macOS.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-cocoa-0.18
|
(define-public rust-cocoa-0.18
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue