summary refs log tree commit diff
path: root/pkgs/tools/misc/watchexec
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-04-10 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-04-10 04:20:00 +0000
commita1260ad61b3ccb77de87267269cbb79a9bac2256 (patch)
tree983f73fea0829930602130c950607b786981d507 /pkgs/tools/misc/watchexec
parent4b21d06df01d181ad91f5ba224b9cd3819f4949a (diff)
downloadnixpkgs-a1260ad61b3ccb77de87267269cbb79a9bac2256.tar
nixpkgs-a1260ad61b3ccb77de87267269cbb79a9bac2256.tar.gz
nixpkgs-a1260ad61b3ccb77de87267269cbb79a9bac2256.tar.bz2
nixpkgs-a1260ad61b3ccb77de87267269cbb79a9bac2256.tar.lz
nixpkgs-a1260ad61b3ccb77de87267269cbb79a9bac2256.tar.xz
nixpkgs-a1260ad61b3ccb77de87267269cbb79a9bac2256.tar.zst
nixpkgs-a1260ad61b3ccb77de87267269cbb79a9bac2256.zip
watchexec: 1.14.1 -> 1.15.0
https://github.com/watchexec/watchexec/releases/tag/1.15.0
Diffstat (limited to 'pkgs/tools/misc/watchexec')
-rw-r--r--pkgs/tools/misc/watchexec/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/tools/misc/watchexec/default.nix b/pkgs/tools/misc/watchexec/default.nix
index 5f80dad854e..5a264db2d4d 100644
--- a/pkgs/tools/misc/watchexec/default.nix
+++ b/pkgs/tools/misc/watchexec/default.nix
@@ -1,21 +1,21 @@
-{ lib, stdenv, rustPlatform, fetchFromGitHub, CoreServices, installShellFiles }:
+{ lib, stdenv, rustPlatform, fetchFromGitHub, CoreServices, installShellFiles, libiconv }:
 
 rustPlatform.buildRustPackage rec {
   pname = "watchexec";
-  version = "1.14.1";
+  version = "1.15.0";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "0m4hipjgg64572lzqy9hz4iq9c4awc93c9rmnpap5iyi855x7idj";
+    sha256 = "1b0ds04q4g8xcgwkziwb5hsi7v73w9y0prvhxz880zzh930652n2";
   };
 
-  cargoSha256 = "0035pqr61mdx699hd4f8hnxknvsdg67l6ys7gxym3fzd9dcmqqff";
+  cargoSha256 = "0jpfgyz5l4fdb5cnqmadzjzrvc6dwgray4b0mx80pghpjw8a8qfb";
 
   nativeBuildInputs = [ installShellFiles ];
 
-  buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
+  buildInputs = lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
 
   postInstall = ''
     installManPage doc/watchexec.1
@@ -27,6 +27,5 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://github.com/watchexec/watchexec";
     license = with licenses; [ asl20 ];
     maintainers = [ maintainers.michalrus ];
-    platforms = platforms.linux ++ platforms.darwin;
   };
 }