forked from mirrors/nixpkgs
4fcc9187a4
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/3f76mczmag2wnkww6la0hcdnf82jly92-lsyncd-2.2.2/bin/lsyncd --version` and found version 2.2.2 - found 2.2.2 with grep in /nix/store/3f76mczmag2wnkww6la0hcdnf82jly92-lsyncd-2.2.2 - found 2.2.2 in filename of file in /nix/store/3f76mczmag2wnkww6la0hcdnf82jly92-lsyncd-2.2.2 cc "@bobvanderlinden"
36 lines
948 B
Nix
36 lines
948 B
Nix
{ stdenv, fetchFromGitHub, cmake, lua, pkgconfig, rsync,
|
|
asciidoc, libxml2, docbook_xml_dtd_45, docbook_xml_xslt, libxslt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lsyncd-${version}";
|
|
version = "2.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "axkibe";
|
|
repo = "lsyncd";
|
|
rev = "release-${version}";
|
|
sha256 = "1q2ixp52r96ckghgmxdbms6xrq8dbziimp8gmgzqfq4lk1v1w80y";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace default-rsync.lua \
|
|
--replace "/usr/bin/rsync" "${rsync}/bin/rsync"
|
|
'';
|
|
|
|
dontUseCmakeBuildDir = true;
|
|
|
|
buildInputs = [
|
|
rsync
|
|
cmake 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.linux;
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
|
};
|
|
}
|