summary refs log tree commit diff
path: root/pkgs/tools/misc/watchexec
diff options
context:
space:
mode:
authorVladyslav M <dywedir@pm.me>2018-08-21 13:00:11 +0300
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-21 12:00:11 +0200
commit3ec19b174f04bd8eab390212bd2015e8e2339381 (patch)
tree19fe863d1999b5c907d73121212a414ca5ca9904 /pkgs/tools/misc/watchexec
parent78c8520c86a909151218cd2258a11d776845a8db (diff)
downloadnixlib-3ec19b174f04bd8eab390212bd2015e8e2339381.tar
nixlib-3ec19b174f04bd8eab390212bd2015e8e2339381.tar.gz
nixlib-3ec19b174f04bd8eab390212bd2015e8e2339381.tar.bz2
nixlib-3ec19b174f04bd8eab390212bd2015e8e2339381.tar.lz
nixlib-3ec19b174f04bd8eab390212bd2015e8e2339381.tar.xz
nixlib-3ec19b174f04bd8eab390212bd2015e8e2339381.tar.zst
nixlib-3ec19b174f04bd8eab390212bd2015e8e2339381.zip
watchexec: 1.8.6 -> 1.9.0 (#45426)
Diffstat (limited to 'pkgs/tools/misc/watchexec')
-rw-r--r--pkgs/tools/misc/watchexec/default.nix18
1 files changed, 8 insertions, 10 deletions
diff --git a/pkgs/tools/misc/watchexec/default.nix b/pkgs/tools/misc/watchexec/default.nix
index b1704c3b46c6..e376568d3503 100644
--- a/pkgs/tools/misc/watchexec/default.nix
+++ b/pkgs/tools/misc/watchexec/default.nix
@@ -1,25 +1,23 @@
 { stdenv, rustPlatform, fetchFromGitHub }:
 
-with rustPlatform;
-
-buildRustPackage rec {
+rustPlatform.buildRustPackage rec {
   name = "watchexec-${version}";
-  version = "1.8.6";
+  version = "1.9.0";
 
   src = fetchFromGitHub {
-    owner = "mattgreen";
+    owner = "watchexec";
     repo = "watchexec";
-    rev = "${version}";
-    sha256 = "1jib51dbr6s1iq21inm2xfsjnz1730nyd3af1x977iqivmwdisax";
+    rev = version;
+    sha256 = "0zp5s2dy5zbar0virvy1izjpvvgwbz7rvjmcy6bph6rb5c4bhm70";
   };
 
-  cargoSha256 = "0sm1jvx1y18h7y66ilphsqmkbdxc76xly8y7kxmqwdi4lw54i9vl";
+  cargoSha256 = "1li84kq9myaw0zwx69y72f3lx01s7i9p8yays4rwvl1ymr614y1l";
 
   meta = with stdenv.lib; {
     description = "Executes commands in response to file modifications";
-    homepage = https://github.com/mattgreen/watchexec;
+    homepage = https://github.com/watchexec/watchexec;
     license = with licenses; [ asl20 ];
     maintainers = [ maintainers.michalrus ];
-    platforms = [ "x86_64-linux" ];
+    platforms = platforms.linux;
   };
 }