mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add rust-objc-sys-0.3.
* gnu/packages/crates-io.scm (rust-objc-sys-0.3): New variable.
This commit is contained in:
parent
7ad833cf18
commit
9e827f8efa
1 changed files with 21 additions and 0 deletions
|
@ -39749,6 +39749,27 @@ (define-public rust-objc-id-0.1
|
|||
"This package provides Rust smart pointers for Objective-C reference counting.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-objc-sys-0.3
|
||||
(package
|
||||
(name "rust-objc-sys")
|
||||
(version "0.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "objc-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"18qqjf2qwlhzzzlf8d5zisn0m92607kyp17kqk31v07njc5gyc6s"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t ; Needs gcc-objc
|
||||
#:cargo-inputs (("rust-cc" ,rust-cc-1))))
|
||||
(home-page "https://github.com/madsmtm/objc2")
|
||||
(synopsis "Raw bindings to the Objective-C runtime and ABI")
|
||||
(description
|
||||
"This package provides raw bindings to the Objective-C runtime and ABI.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-objc-test-utils-0.0
|
||||
(package
|
||||
(name "rust-objc-test-utils")
|
||||
|
|
Loading…
Reference in a new issue