From 7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Thu, 28 Jan 2016 11:58:33 -0500 Subject: [PATCH] watchman: 4.1.0 -> 4.3.0 * improved handling of case insensitive filenames * improved reliability of symlink change detection on osx --- pkgs/development/tools/watchman/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/watchman/default.nix b/pkgs/development/tools/watchman/default.nix index b2029391b74..2f02a7a4a1f 100644 --- a/pkgs/development/tools/watchman/default.nix +++ b/pkgs/development/tools/watchman/default.nix @@ -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" ];