me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-objc2-0.3.

* gnu/packages/crates-io.scm (rust-objc2-0.3): New variable.
master
Efraim Flashner 2023-04-23 16:03:30 +03:00
parent a55cea13f4
commit f4b37a4bd2
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 0 deletions

View File

@ -39811,6 +39811,33 @@ Foundation framework.")
"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")