mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 09:02:59 -05:00
gnu: Add rust-inotify-0.10.
* gnu/packages/crates-io.scm (rust-inotify-0.10): New variable. (rust-inotify-0.9): Inherit from rust-inotify-0.10.
This commit is contained in:
parent
20a8f95cca
commit
85f76a37fa
1 changed files with 41 additions and 16 deletions
|
@ -31563,19 +31563,49 @@ (define-public rust-inflector-0.11
|
||||||
as both traits and pure functions acting on String types.")
|
as both traits and pure functions acting on String types.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public rust-inotify-0.9
|
(define-public rust-inotify-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-inotify")
|
(name "rust-inotify")
|
||||||
(version "0.9.3")
|
(version "0.10.2")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "inotify" version))
|
(uri (crate-uri "inotify" version))
|
||||||
(file-name
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1cs3xlkq3fnfca3mimvifazp01ayscinm07v38ifw0xin5f4fcdh"))))
|
(base32
|
||||||
|
"1k2m6a95827yspax1icmwiz4szr7c01w3dnn2b2bil4hfvcnilgx"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-bitflags" ,rust-bitflags-1)
|
||||||
|
("rust-futures-core" ,rust-futures-core-0.3)
|
||||||
|
("rust-inotify-sys" ,rust-inotify-sys-0.1)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-tokio" ,rust-tokio-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-futures-util" ,rust-futures-util-0.3)
|
||||||
|
("rust-maplit" ,rust-maplit-1)
|
||||||
|
("rust-rand" ,rust-rand-0.8)
|
||||||
|
("rust-tempfile" ,rust-tempfile-3)
|
||||||
|
("rust-tokio" ,rust-tokio-1))))
|
||||||
|
(home-page "https://github.com/hannobraun/inotify")
|
||||||
|
(synopsis "Idiomatic wrapper for inotify")
|
||||||
|
(description "This package provides an idiomatic wrapper for inotify
|
||||||
|
written in Rust.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
||||||
|
(define-public rust-inotify-0.9
|
||||||
|
(package
|
||||||
|
(inherit rust-inotify-0.10)
|
||||||
|
(name "rust-inotify")
|
||||||
|
(version "0.9.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "inotify" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cs3xlkq3fnfca3mimvifazp01ayscinm07v38ifw0xin5f4fcdh"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
|
@ -31587,12 +31617,7 @@ (define-public rust-inotify-0.9
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-futures-util" ,rust-futures-util-0.3)
|
(("rust-futures-util" ,rust-futures-util-0.3)
|
||||||
("rust-tempfile" ,rust-tempfile-3)
|
("rust-tempfile" ,rust-tempfile-3)
|
||||||
("rust-tokio" ,rust-tokio-1))))
|
("rust-tokio" ,rust-tokio-1))))))
|
||||||
(home-page "https://github.com/inotify-rs/inotify")
|
|
||||||
(synopsis "Idiomatic wrapper for inotify")
|
|
||||||
(description "This package provides an idiomatic wrapper for inotify
|
|
||||||
written in Rust.")
|
|
||||||
(license license:isc)))
|
|
||||||
|
|
||||||
(define-public rust-inotify-0.8
|
(define-public rust-inotify-0.8
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue