watchman: 4.1.0 -> 4.3.0

* improved handling of case insensitive filenames
* improved reliability of symlink change detection on osx
This commit is contained in:
Charles Strahan 2016-01-28 11:58:33 -05:00
parent a83920c32d
commit 7b8cd1dce9
1 changed files with 5 additions and 2 deletions

View File

@ -5,13 +5,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "watchman-${version}"; name = "watchman-${version}";
version = "4.1.0"; version = "4.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "facebook"; owner = "facebook";
repo = "watchman"; repo = "watchman";
rev = "v${version}"; rev = "v${version}";
sha256 = "01ak2gsmc76baswpivzz00g22r547mpp8l7xfziwl5804nzszrcg"; sha256 = "0dcaklw4d42z8hndy9zsdqqv1q8r18wnwldgdgjvp5c9vijvgyrd";
}; };
buildInputs = [ autoconf automake pcre ]; buildInputs = [ autoconf automake pcre ];
@ -20,6 +20,9 @@ stdenv.mkDerivation rec {
"--enable-lenient" "--enable-lenient"
"--enable-conffile=${if confFile == null then "no" else confFile}" "--enable-conffile=${if confFile == null then "no" else confFile}"
"--with-pcre=yes" "--with-pcre=yes"
# For security considerations re: --disable-statedir, see:
# https://github.com/facebook/watchman/issues/178
"--disable-statedir" "--disable-statedir"
]; ];