summary refs log tree commit diff
path: root/pkgs/applications/networking/sync/lsyncd/default.nix
blob: 775da905ea9158206a42b20da5614149ae151e52 (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
{ stdenv, fetchFromGitHub, automake, autoconf, lua, pkgconfig, rsync,
  asciidoc, libxml2, docbook_xml_dtd_45, docbook_xml_xslt, libxslt }:

stdenv.mkDerivation rec {
  name = "lsyncd-${version}";
  version = "2.1.5";

  src = fetchFromGitHub {
    owner = "axkibe";
    repo = "lsyncd";
    rev = "release-${version}";
    sha256 = "0jvr2rv34jyjrv7188vdv1z8vgvm4wydqwsp9x5ksfzh9drbq5gn";
  };

  patches = [ ./configure-a2x-fix.patch ];

  preConfigurePhase = ''
    substituteInPlace default-rsync.lua \
      --replace "binary        = '/usr/bin/rsync'," "binary        = '${rsync}/bin/rsync',"
  '';

  configurePhase = ''
    ./autogen.sh --prefix=$out
    ./configure --prefix=$out
  '';

  buildInputs = [
    rsync
    automake autoconf lua pkgconfig
    asciidoc libxml2 docbook_xml_dtd_45 docbook_xml_xslt libxslt
  ];

  meta = with stdenv.lib; {
    homepage = https://github.com/axkibe/lsyncd;
    description = "A utility that synchronizes local directories with remote targets";
    license = licenses.gpl2;
    platforms = platforms.unix;
    maintainers = with maintainers; [ bobvanderlinden ];
  };
}