summary refs log tree commit diff
path: root/pkgs/development/tools/watchman
diff options
context:
space:
mode:
authorCharles Strahan <charles.c.strahan@gmail.com>2016-01-28 11:58:33 -0500
committerCharles Strahan <charles.c.strahan@gmail.com>2016-01-28 11:58:33 -0500
commit7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4 (patch)
tree15964f5d9090fe36b93c8839e6dbeb988225284a /pkgs/development/tools/watchman
parenta83920c32d2604d10387f5ab618e78c7b0a8dfdb (diff)
downloadnixpkgs-7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4.tar
nixpkgs-7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4.tar.gz
nixpkgs-7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4.tar.bz2
nixpkgs-7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4.tar.lz
nixpkgs-7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4.tar.xz
nixpkgs-7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4.tar.zst
nixpkgs-7b8cd1dce93ba87aa1a93db1b5bf45eae4704fd4.zip
watchman: 4.1.0 -> 4.3.0
* improved handling of case insensitive filenames
* improved reliability of symlink change detection on osx
Diffstat (limited to 'pkgs/development/tools/watchman')
-rw-r--r--pkgs/development/tools/watchman/default.nix7
1 files 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"
   ];