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

View file

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