2019-06-19 18:55:22 +01:00
|
|
|
{ stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre
|
|
|
|
, libtool, pkgconfig, openssl
|
|
|
|
, confFile ? config.watchman.confFile or null
|
|
|
|
, withApple ? stdenv.isDarwin, CoreServices
|
2014-07-05 21:34:51 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "watchman";
|
2017-08-24 17:17:27 +01:00
|
|
|
version = "4.9.0";
|
2014-07-05 21:34:51 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "watchman";
|
|
|
|
rev = "v${version}";
|
2017-08-24 17:17:27 +01:00
|
|
|
sha256 = "0fdaj5pmicm6j17d5q7px800m5rmam1a400x3hv1iiifnmhgnkal";
|
2014-07-05 21:34:51 +01:00
|
|
|
};
|
|
|
|
|
2017-08-24 17:17:27 +01:00
|
|
|
nativeBuildInputs = [ autoconf automake pkgconfig libtool ];
|
2019-06-19 18:55:22 +01:00
|
|
|
buildInputs = [ pcre openssl ]
|
|
|
|
++ lib.optionals withApple [ CoreServices ];
|
2014-07-05 21:34:51 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
2019-06-19 18:55:22 +01:00
|
|
|
"--enable-lenient"
|
|
|
|
"--enable-conffile=${if confFile == null then "no" else confFile}"
|
|
|
|
"--with-pcre=yes"
|
2016-01-28 16:58:33 +00:00
|
|
|
|
2019-06-19 18:55:22 +01:00
|
|
|
# For security considerations re: --disable-statedir, see:
|
|
|
|
# https://github.com/facebook/watchman/issues/178
|
|
|
|
"--disable-statedir"
|
2014-07-05 21:34:51 +01:00
|
|
|
];
|
|
|
|
|
2017-08-24 17:17:27 +01:00
|
|
|
prePatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2014-07-05 21:34:51 +01: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;
|
|
|
|
};
|
|
|
|
}
|