gnu: Add rust-inotify-0.9.
* gnu/packages/crates-io.scm (rust-inotify-0.9): New variable. (rust-inotify-0.8): inherit from above. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>master
parent
76b21762c1
commit
83ed670443
|
@ -21028,8 +21028,40 @@ deordinalize, demodulize, foreign key, and pluralize/singularize are supported
|
|||
as both traits and pure functions acting on String types.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public rust-inotify-0.9
|
||||
(package
|
||||
(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"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#: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-tempfile" ,rust-tempfile-3)
|
||||
("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
|
||||
(package
|
||||
(inherit rust-inotify-0.9)
|
||||
(name "rust-inotify")
|
||||
(version "0.8.3")
|
||||
(source
|
||||
|
@ -21039,7 +21071,6 @@ as both traits and pure functions acting on String types.")
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1m74znskinrvfcp0hczwwdxvc7kvnrrailngkivk1iwknfa0mpa6"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-1)
|
||||
|
@ -21051,12 +21082,7 @@ as both traits and pure functions acting on String types.")
|
|||
#:cargo-development-inputs
|
||||
(("rust-futures-util" ,rust-futures-util-0.3)
|
||||
("rust-tempdir" ,rust-tempdir-0.3)
|
||||
("rust-tokio" ,rust-tokio-0.2))))
|
||||
(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)))
|
||||
("rust-tokio" ,rust-tokio-0.2))))))
|
||||
|
||||
(define-public rust-inotify-0.7
|
||||
(package
|
||||
|
|
Reference in New Issue