summary refs log tree commit diff
path: root/pkgs/development/tools/misc/fswatch/default.nix
blob: 8f7f9437d4efcfec9b3bc279c9ca740bc3539e66 (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
48
{ stdenv
, fetchFromGitHub
, autoconf
, automake
, findutils                     # for xargs
, gettext
, libtool
, makeWrapper
, texinfo
}:

let

 version = "1.4.6";

in stdenv.mkDerivation {

  name = "fswatch-${version}";

  src = fetchFromGitHub {
    owner = "emcrisostomo";
    repo = "fswatch";
    rev = version;
    sha256 = "0flq8baqzifhmf61zyiipdipvgy4h0kl551clxrhwa8gvzf75im4";
  };

  buildInputs = [ autoconf automake gettext libtool makeWrapper texinfo ];

  preConfigure = ''
    ./autogen.sh
  '';

  postFixup = ''
    for prog in fswatch-run fswatch-run-bash; do
      wrapProgram $out/bin/$prog \
        --prefix PATH "${findutils}/bin"
    done
  '';

  meta = with stdenv.lib; {
    description = "A cross-platform file change monitor with multiple backends";
    homepage = https://github.com/emcrisostomo/fswatch;
    license = licenses.gpl3Plus;
    platforms = platforms.all;
    maintainers = with maintainers; [ pSub ];
  };

}