Merge pull request #63333 from knl/enable-fsevents-api-for-fswatch
fswatch: Enable FSEvents API on Darwin
This commit is contained in:
commit
ad96121365
@ -6,6 +6,7 @@
|
||||
, libtool
|
||||
, makeWrapper
|
||||
, texinfo
|
||||
, CoreServices
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -19,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1d1fvm36qgh6a5j9v24wai61d297pvzxr14jngjlhh4i474ff21i";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
nativeBuildInputs = [ autoreconfHook ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
|
||||
buildInputs = [ gettext libtool makeWrapper texinfo ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
@ -9188,7 +9188,9 @@ in
|
||||
|
||||
fsatrace = callPackage ../development/tools/misc/fsatrace { };
|
||||
|
||||
fswatch = callPackage ../development/tools/misc/fswatch { };
|
||||
fswatch = callPackage ../development/tools/misc/fswatch {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
|
||||
funnelweb = callPackage ../development/tools/literate-programming/funnelweb { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user