nixpkgs/pkgs/applications/networking/sync/lsyncd/default.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, lua, pkg-config, rsync,
asciidoc, libxml2, docbook_xml_dtd_45, docbook_xsl, libxslt }:
2015-09-21 14:55:17 +01:00
stdenv.mkDerivation rec {
pname = "lsyncd";
2018-08-08 23:09:53 +01:00
version = "2.2.3";
2015-09-21 14:55:17 +01:00
src = fetchFromGitHub {
owner = "axkibe";
repo = "lsyncd";
rev = "release-${version}";
2018-08-08 23:09:53 +01:00
sha256 = "1hbsih5hfq9lhgnxm0wb5mrj6xmlk2l0i9a79wzd5f6cnjil9l3x";
2015-09-21 14:55:17 +01:00
};
2018-08-08 23:09:53 +01:00
patches = [
(fetchpatch {
sha256 = "0b0h2qxh73l502p7phf6qgl8576nf6fvqqp2x5wy3nz7sc9qb1z8";
name = "fix-non-versioned-lua-not-search-in-cmake.patch";
url = "https://github.com/axkibe/lsyncd/pull/500/commits/0af99d8d5ba35118e8799684a2d4a8ea4b0c6957.patch";
})
];
postPatch = ''
2015-09-21 14:55:17 +01:00
substituteInPlace default-rsync.lua \
2015-12-20 20:55:08 +00:00
--replace "/usr/bin/rsync" "${rsync}/bin/rsync"
2015-09-21 14:55:17 +01:00
'';
# Special flags needed on Darwin:
# https://github.com/axkibe/lsyncd/blob/42413cabbedca429d55a5378f6e830f191f3cc86/INSTALL#L51
cmakeFlags = lib.optional stdenv.isDarwin [ "-DWITH_INOTIFY=OFF" "-DWITH_FSEVENTS=ON" ];
2015-12-20 20:55:08 +00:00
dontUseCmakeBuildDir = true;
2015-09-21 14:55:17 +01:00
buildInputs = [
rsync
cmake lua pkg-config
asciidoc libxml2 docbook_xml_dtd_45 docbook_xsl libxslt
2015-09-21 14:55:17 +01:00
];
meta = with lib; {
homepage = "https://github.com/axkibe/lsyncd";
2015-09-21 14:55:17 +01:00
description = "A utility that synchronizes local directories with remote targets";
license = licenses.gpl2Plus;
platforms = platforms.all;
2015-09-21 14:55:17 +01:00
maintainers = with maintainers; [ bobvanderlinden ];
};
}