mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-ndk-sys-0.4.
* gnu/packages/crates-io.scm (rust-ndk-sys-0.4): New variable. (rust-ndk-sys-0.2): Inherit from rust-ndk-sys-0.4.
This commit is contained in:
parent
f929ef6de7
commit
2bad1ba294
1 changed files with 22 additions and 6 deletions
|
@ -37468,8 +37468,29 @@ (define-public rust-ndk-macro-0.2
|
||||||
("rust-quote" ,rust-quote-1)
|
("rust-quote" ,rust-quote-1)
|
||||||
("rust-syn" ,rust-syn-1))))))
|
("rust-syn" ,rust-syn-1))))))
|
||||||
|
|
||||||
|
(define-public rust-ndk-sys-0.4
|
||||||
|
(package
|
||||||
|
(name "rust-ndk-sys")
|
||||||
|
(version "0.4.1+23.1.7779620")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ndk-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "18z5xsnrnpq65aspavb8cg925m3scs8hb1b9a2n2q8xxb3lsmwiw"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs (("rust-jni-sys" ,rust-jni-sys-0.3))))
|
||||||
|
(home-page "https://github.com/rust-windowing/android-ndk-rs")
|
||||||
|
(synopsis "FFI bindings for the Android NDK")
|
||||||
|
(description "This package provides FFI bindings for the Android NDK.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-ndk-sys-0.2
|
(define-public rust-ndk-sys-0.2
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-ndk-sys-0.4)
|
||||||
(name "rust-ndk-sys")
|
(name "rust-ndk-sys")
|
||||||
(version "0.2.2")
|
(version "0.2.2")
|
||||||
(source
|
(source
|
||||||
|
@ -37479,12 +37500,7 @@ (define-public rust-ndk-sys-0.2
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "08915adplysmvx0ha12if1v7zxzx82xgj3nnmiddkm8aq9sdvg71"))))
|
(base32 "08915adplysmvx0ha12if1v7zxzx82xgj3nnmiddkm8aq9sdvg71"))))
|
||||||
(build-system cargo-build-system)
|
(arguments `(#:skip-build? #t))))
|
||||||
(arguments `(#:skip-build? #t))
|
|
||||||
(home-page "https://github.com/rust-windowing/android-ndk-rs")
|
|
||||||
(synopsis "FFI bindings for the Android NDK")
|
|
||||||
(description "This package provides FFI bindings for the Android NDK.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-needletail-0.4
|
(define-public rust-needletail-0.4
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue