mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add rust-notify-4.
* gnu/packages/crates-io.scm (rust-notify-4): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
85725ed7b8
commit
4bc4189c5d
1 changed files with 35 additions and 0 deletions
|
@ -8458,6 +8458,41 @@ (define-public rust-no-panic-0.1
|
|||
prove a function can't ever panic.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-notify-4
|
||||
(package
|
||||
(name "rust-notify")
|
||||
(version "4.0.14")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "notify" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"12vpbg8j49196rxkm01hw2xfr0mk005ljmx0p9kwf6xj6gy2i5hr"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-1)
|
||||
("rust-filetime" ,rust-filetime-0.2)
|
||||
("rust-fsevent" ,rust-fsevent-0.4)
|
||||
("rust-fsevent-sys" ,rust-fsevent-sys-2)
|
||||
("rust-inotify" ,rust-inotify-0.6)
|
||||
("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-mio" ,rust-mio-0.6)
|
||||
("rust-mio-extras" ,rust-mio-extras-2)
|
||||
("rust-walkdir" ,rust-walkdir-2.2)
|
||||
("rust-winapi" ,rust-winapi-0.3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-tempdir" ,rust-tempdir-0.3))))
|
||||
(home-page "https://github.com/passcod/notify")
|
||||
(synopsis "Cross-platform filesystem notification library")
|
||||
(description
|
||||
"Cross-platform filesystem notification library.")
|
||||
(license license:cc0)))
|
||||
|
||||
(define-public rust-nix-0.14
|
||||
(package
|
||||
(inherit rust-nix-0.15)
|
||||
|
|
Loading…
Reference in a new issue