2014-07-05 20:34:51 +00:00
|
|
|
{ stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre
|
|
|
|
, confFile ? config.watchman.confFile or null
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "watchman-${version}";
|
|
|
|
|
2016-12-13 15:27:21 +00:00
|
|
|
version = "4.7.0";
|
2014-07-05 20:34:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "watchman";
|
|
|
|
rev = "v${version}";
|
2016-12-13 15:27:21 +00:00
|
|
|
sha256 = "0xnd7jvrmyxhlw2ggd37swv1mk6vw9j91fdxps6njgvnlfg9zs5n";
|
2014-07-05 20:34:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ autoconf automake pcre ];
|
|
|
|
|
|
|
|
configureFlags = [
|
2014-08-11 04:18:57 +00:00
|
|
|
"--enable-lenient"
|
2014-07-05 20:34:51 +00:00
|
|
|
"--enable-conffile=${if confFile == null then "no" else confFile}"
|
|
|
|
"--with-pcre=yes"
|
2016-01-28 16:58:33 +00:00
|
|
|
|
|
|
|
# For security considerations re: --disable-statedir, see:
|
|
|
|
# https://github.com/facebook/watchman/issues/178
|
2015-10-23 18:02:56 +00:00
|
|
|
"--disable-statedir"
|
2014-07-05 20:34:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Watches files and takes action when they change";
|
|
|
|
homepage = https://facebook.github.io/watchman;
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|