about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/watchman/default.nix
blob: 4a056db6c0c24a319f7f38b34df1cf8f39dc757b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre
, libtool, pkgconfig, openssl
, confFile ? config.watchman.confFile or null
, withApple ? stdenv.isDarwin, CoreServices
}:

stdenv.mkDerivation rec {
  name = "watchman-${version}";
  version = "4.9.0";

  src = fetchFromGitHub {
    owner = "facebook";
    repo = "watchman";
    rev = "v${version}";
    sha256 = "0fdaj5pmicm6j17d5q7px800m5rmam1a400x3hv1iiifnmhgnkal";
  };

  nativeBuildInputs = [ autoconf automake pkgconfig libtool ];
  buildInputs = [ pcre openssl ]
    ++ lib.optionals withApple [ CoreServices ];

  configureFlags = [
    "--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"
  ];

  prePatch = ''
    patchShebangs .
  '';

  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;
  };
}