Archived
1
0
Fork 0

gnu: watchexec: Update to 1.14.1.

* gnu/packages/rust-apps.scm (watchexec): Update to 1.14.1.
[arguments]: Add rust-embed-resource to, and remove rust-clap &
rust-winapi, from #:cargo-inputs.
This commit is contained in:
Tobias Geerinckx-Rice 2021-01-03 18:29:34 +01:00
parent 73023b280a
commit 4d047d1970
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -7,6 +7,7 @@
;;; Copyright © 2020 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com> ;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
;;; Copyright © 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -488,7 +489,7 @@ blanks grouped by language.")
(define-public watchexec (define-public watchexec
(package (package
(name "watchexec") (name "watchexec")
(version "1.14.0") (version "1.14.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -496,8 +497,7 @@ blanks grouped by language.")
(file-name (file-name
(string-append name "-" version ".tar.gz")) (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32 "1vqaa462sjpzi0crh12ixqc2wa5bblirc129pnj8jr8iz3xw3gvd"))))
"0bwgqb5fvyqbf2lf0005fxzpbpbwbszc7144g3kg2cmzy5cbrf0w"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -512,7 +512,7 @@ blanks grouped by language.")
(install-file "README.md" doc) (install-file "README.md" doc)
#t)))) #t))))
#:cargo-inputs #:cargo-inputs
(("rust-clap" ,rust-clap-2) (("rust-embed-resource" ,rust-embed-resource-1.3)
("rust-derive-builder" ,rust-derive-builder-0.9) ("rust-derive-builder" ,rust-derive-builder-0.9)
("rust-env-logger" ,rust-env-logger-0.7) ("rust-env-logger" ,rust-env-logger-0.7)
("rust-glob" ,rust-glob-0.3) ("rust-glob" ,rust-glob-0.3)
@ -521,8 +521,7 @@ blanks grouped by language.")
("rust-log" ,rust-log-0.4) ("rust-log" ,rust-log-0.4)
("rust-nix" ,rust-nix-0.17) ("rust-nix" ,rust-nix-0.17)
("rust-notify" ,rust-notify-4) ("rust-notify" ,rust-notify-4)
("rust-walkdir" ,rust-walkdir-2) ("rust-walkdir" ,rust-walkdir-2))))
("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/watchexec/watchexec") (home-page "https://github.com/watchexec/watchexec")
(synopsis "Executes commands in response to file modifications") (synopsis "Executes commands in response to file modifications")
(description (description