mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: rust-ndk: Add 0.5.0.
* gnu/packages/crates-io.scm (rust-ndk-0.5): New variable. (rust-ndk-0.2): Inherit from it.
This commit is contained in:
parent
94753408f3
commit
591ae23cea
1 changed files with 30 additions and 7 deletions
|
@ -36698,8 +36698,37 @@ (define-public rust-ndarray-0.12
|
||||||
("rust-quickcheck" ,rust-quickcheck-0.7)
|
("rust-quickcheck" ,rust-quickcheck-0.7)
|
||||||
("rust-rawpointer" ,rust-rawpointer-0.1))))))
|
("rust-rawpointer" ,rust-rawpointer-0.1))))))
|
||||||
|
|
||||||
|
(define-public rust-ndk-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-ndk")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ndk" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "17b9imdmv6cffr12bdpvxw1myxdyvaf6jwkmd3w7abn7akv6in4n"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #true ;XXX: Android only
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-bitflags" ,rust-bitflags-1)
|
||||||
|
("rust-jni" ,rust-jni-0.18)
|
||||||
|
("rust-jni-glue" ,rust-jni-glue-0.0)
|
||||||
|
("rust-jni-sys" ,rust-jni-sys-0.3)
|
||||||
|
("rust-ndk-sys" ,rust-ndk-sys-0.2)
|
||||||
|
("rust-num-enum" ,rust-num-enum-0.5)
|
||||||
|
("rust-thiserror" ,rust-thiserror-1))))
|
||||||
|
(home-page "https://github.com/rust-windowing/android-ndk-rs")
|
||||||
|
(synopsis "Safe Rust bindings to the Android NDK")
|
||||||
|
(description
|
||||||
|
"This package provides safe Rust bindings to the Android NDK.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-ndk-0.2
|
(define-public rust-ndk-0.2
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-ndk-0.5)
|
||||||
(name "rust-ndk")
|
(name "rust-ndk")
|
||||||
(version "0.2.1")
|
(version "0.2.1")
|
||||||
(source
|
(source
|
||||||
|
@ -36709,7 +36738,6 @@ (define-public rust-ndk-0.2
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0wvf4hy18lpfkr4bap846qv2cx1vdg3x0d4hcfba9l5yzv0ngcay"))))
|
(base32 "0wvf4hy18lpfkr4bap846qv2cx1vdg3x0d4hcfba9l5yzv0ngcay"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #true ;XXX: Android only
|
`(#:skip-build? #true ;XXX: Android only
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
|
@ -36718,12 +36746,7 @@ (define-public rust-ndk-0.2
|
||||||
("rust-jni-sys" ,rust-jni-sys-0.3)
|
("rust-jni-sys" ,rust-jni-sys-0.3)
|
||||||
("rust-ndk-sys" ,rust-ndk-sys-0.2)
|
("rust-ndk-sys" ,rust-ndk-sys-0.2)
|
||||||
("rust-num-enum" ,rust-num-enum-0.4)
|
("rust-num-enum" ,rust-num-enum-0.4)
|
||||||
("rust-thiserror" ,rust-thiserror-1))))
|
("rust-thiserror" ,rust-thiserror-1))))))
|
||||||
(home-page "https://github.com/rust-windowing/android-ndk-rs")
|
|
||||||
(synopsis "Safe Rust bindings to the Android NDK")
|
|
||||||
(description
|
|
||||||
"This package provides safe Rust bindings to the Android NDK.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-ndk-context-0.1
|
(define-public rust-ndk-context-0.1
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue