about summary refs log tree commit diff
path: root/pkgs/tools/misc/watchexec
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-10-28 03:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-10-28 03:00:00 -0500
commit460e2d2f7f630b69ea619bbaaf6f93a18e96171b (patch)
treeb8b347491411bc60cf107c44bd2a4738f198d58a /pkgs/tools/misc/watchexec
parent9d37be21a74a36d7af54043244395c14880cd46c (diff)
watchexec: 1.10.3 -> 1.11.1
Changelog:
- https://github.com/watchexec/watchexec/releases/tag/1.11.0
- https://github.com/watchexec/watchexec/releases/tag/1.11.1
Diffstat (limited to 'pkgs/tools/misc/watchexec')
-rw-r--r--pkgs/tools/misc/watchexec/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/watchexec/default.nix b/pkgs/tools/misc/watchexec/default.nix
index 848a5858b9198..dea4478581b68 100644
--- a/pkgs/tools/misc/watchexec/default.nix
+++ b/pkgs/tools/misc/watchexec/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, rustPlatform, fetchFromGitHub, CoreServices, darwin }:
+{ stdenv, rustPlatform, fetchFromGitHub, CoreServices }:
 
 rustPlatform.buildRustPackage rec {
   pname = "watchexec";
-  version = "1.10.3";
+  version = "1.11.1";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "0iaxicghvfy85hrxn151hz8frgfknk3s1z0ngjn7cv5x5zvfxspf";
+    sha256 = "1iaib7yvxyn3l9kiys9x7wziixj13fmx1z3wgdy6h8c7jv6fpc0j";
   };
 
-  cargoSha256 = "1sqwplvpg0n9j0h9j94m7a6ylgqi4y4wyx489y09z9gm7aqgrsjc";
+  cargoSha256 = "101p0qj7ydfhqfz402mxy4bs48vq3rzgj513f1kwv0ba4hn1sxkv";
 
   buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];