mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add rust-objc2-0.3.
* gnu/packages/crates-io.scm (rust-objc2-0.3): New variable.
This commit is contained in:
parent
a55cea13f4
commit
f4b37a4bd2
1 changed files with 27 additions and 0 deletions
|
@ -39811,6 +39811,33 @@ (define-public rust-objc-test-utils-0.0
|
|||
"This package provides utilities for testing Objective-C interop.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-objc2-0.3
|
||||
(package
|
||||
(name "rust-objc2")
|
||||
(version "0.3.0-beta.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "objc2" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0jfnrwmp6n2d6snlpcyfk9l41nhm50wj9h42b6hqj2rxbm1facgy"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-block2" ,rust-block2-0.2) ; 0.2.0-alpha.6
|
||||
("rust-objc-sys" ,rust-objc-sys-0.2) ; 0.2.0-beta.2
|
||||
("rust-objc2-encode" ,rust-objc2-encode-2) ; 2.0.0-pre.2
|
||||
("rust-objc2-proc-macros" ,rust-objc2-proc-macros-0.1)
|
||||
("rust-uuid" ,rust-uuid-1))))
|
||||
(home-page "https://github.com/madsmtm/objc2")
|
||||
(synopsis
|
||||
"Objective-C interface and bindings to the Cocoa Foundation framework")
|
||||
(description "This package provides Objective-C interface and bindings to
|
||||
the Cocoa Foundation framework.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-objc2-encode-2
|
||||
(package
|
||||
(name "rust-objc2-encode")
|
||||
|
|
Loading…
Reference in a new issue