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

53 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, meson, ninja, pkg-config, python3, sphinx
2018-06-25 00:49:52 +01:00
, acl, curl, fuse, libselinux, udev, xz, zstd
, fuseSupport ? true
, selinuxSupport ? true
, udevSupport ? true
2018-06-25 00:49:52 +01:00
, glibcLocales, rsync
}:
2018-06-24 22:06:36 +01:00
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "casync";
2019-11-03 11:49:02 +00:00
version = "2-219-ga8f6c84";
2018-06-24 22:06:36 +01:00
src = fetchFromGitHub {
owner = "systemd";
repo = "casync";
2019-11-03 11:49:02 +00:00
rev = "a8f6c841ccfe59ca8c68aad64df170b64042dce8";
sha256 = "1i3c9wmpabpmx2wfbcyabmwfa66vz92iq5dlbm89v5mvgavz7bws";
2018-06-24 22:06:36 +01:00
};
buildInputs = [ acl curl xz zstd ]
2021-01-15 13:21:58 +00:00
++ lib.optionals (fuseSupport) [ fuse ]
++ lib.optionals (selinuxSupport) [ libselinux ]
++ lib.optionals (udevSupport) [ udev ];
nativeBuildInputs = [ meson ninja pkg-config python3 sphinx ];
2018-06-25 00:49:52 +01:00
checkInputs = [ glibcLocales rsync ];
postPatch = ''
for f in test/test-*.sh.in; do
patchShebangs $f
done
patchShebangs test/http-server.py
'';
2018-06-24 22:06:36 +01:00
PKG_CONFIG_UDEV_UDEVDIR = "lib/udev";
2021-01-15 13:21:58 +00:00
mesonFlags = lib.optionals (!fuseSupport) [ "-Dfuse=false" ]
++ lib.optionals (!udevSupport) [ "-Dudev=false" ]
++ lib.optionals (!selinuxSupport) [ "-Dselinux=false" ];
2018-06-24 22:06:36 +01:00
2018-06-25 00:49:52 +01:00
doCheck = true;
preCheck = ''
export LC_ALL="en_US.utf-8"
'';
meta = with lib; {
2018-06-24 22:06:36 +01:00
description = "Content-Addressable Data Synchronizer";
homepage = "https://github.com/systemd/casync";
2018-06-24 22:06:36 +01:00
license = licenses.lgpl21;
platforms = platforms.linux;
2018-06-24 22:06:36 +01:00
maintainers = with maintainers; [ flokli ];
};
}