watchexec: 1.19.0 -> 1.20.4

This commit is contained in:
Mario Rodas 2022-07-23 04:20:00 +00:00
parent ca9f919a84
commit 8aebac5eca
2 changed files with 8 additions and 6 deletions

View file

@ -1,21 +1,23 @@
{ lib, stdenv, rustPlatform, fetchFromGitHub, CoreServices, Foundation, installShellFiles, libiconv }: { lib, stdenv, rustPlatform, fetchFromGitHub, Cocoa, AppKit, installShellFiles }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "watchexec"; pname = "watchexec";
version = "1.19.0"; version = "1.20.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "cli-v${version}"; rev = "cli-v${version}";
sha256 = "sha256-Zqu6Qor7kHSeOFyHjcrl6RhB8gL9pljHt7hEd6/0Kss="; sha256 = "sha256-se3iqz+qjwf71wvHQhCWYryEdUc+kY0Q0ZTg4i1ayNI=";
}; };
cargoSha256 = "sha256-XwgoYaqgDkNggzi2TL/JPfh8LSFSzSWOVMbkmhXX73I="; cargoSha256 = "sha256-YM+Zm3wFp3Lsx5LmyjGwZywV/SZjriL6JMDO1l0tNf4=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Foundation libiconv ]; buildInputs = lib.optionals stdenv.isDarwin [ Cocoa AppKit ];
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework AppKit";
checkFlags = [ "--skip=help" "--skip=help_short" ]; checkFlags = [ "--skip=help" "--skip=help_short" ];

View file

@ -11672,7 +11672,7 @@ with pkgs;
wander = callPackage ../tools/admin/wander { }; wander = callPackage ../tools/admin/wander { };
watchexec = callPackage ../tools/misc/watchexec { watchexec = callPackage ../tools/misc/watchexec {
inherit (darwin.apple_sdk.frameworks) CoreServices Foundation; inherit (darwin.apple_sdk.frameworks) Cocoa AppKit;
}; };
watchlog = callPackage ../tools/misc/watchlog { }; watchlog = callPackage ../tools/misc/watchlog { };