mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 09:02:59 -05:00
gnu: Add rust-ntapi-0.4.
* gnu/packages/crates-io.scm (rust-ntapi-0.4): New variable. (rust-ntapi-0.3): Inherit from rust-ntapi-0.4.
This commit is contained in:
parent
85f76a37fa
commit
d955d7ca33
1 changed files with 21 additions and 6 deletions
|
@ -41323,8 +41323,28 @@ (define-public rust-notmuch-0.6
|
||||||
"This crate provides a Rust interface and bindings for Notmuch.")
|
"This crate provides a Rust interface and bindings for Notmuch.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public rust-ntapi-0.4
|
||||||
|
(package
|
||||||
|
(name "rust-ntapi")
|
||||||
|
(version "0.4.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ntapi" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1r38zhbwdvkis2mzs6671cm1p6djgsl49i7bwxzrvhwicdf8k8z8"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
|
||||||
|
(home-page "https://github.com/MSxDOS/ntapi")
|
||||||
|
(synopsis "FFI bindings for Native API")
|
||||||
|
(description "FFI bindings for Native API")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-ntapi-0.3
|
(define-public rust-ntapi-0.3
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-ntapi-0.4)
|
||||||
(name "rust-ntapi")
|
(name "rust-ntapi")
|
||||||
(version "0.3.6")
|
(version "0.3.6")
|
||||||
(source
|
(source
|
||||||
|
@ -41334,14 +41354,9 @@ (define-public rust-ntapi-0.3
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0i5daj9sr8wyi5jkpwpybln2jqpn59z0mqfc0dpdidipwh1bjsrz"))))
|
(base32 "0i5daj9sr8wyi5jkpwpybln2jqpn59z0mqfc0dpdidipwh1bjsrz"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-winapi" ,rust-winapi-0.3))))
|
(("rust-winapi" ,rust-winapi-0.3))))))
|
||||||
(home-page "")
|
|
||||||
(synopsis "FFI bindings for Native API")
|
|
||||||
(description "FFI bindings for Native API")
|
|
||||||
(license (list license:asl2.0 license:expat))))
|
|
||||||
|
|
||||||
(define-public rust-ntest-0.8
|
(define-public rust-ntest-0.8
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue