2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, perl, libiconv, zlib, popt
|
2021-06-10 21:46:51 +00:00
|
|
|
, enableACLs ? lib.meta.availableOn stdenv.hostPlatform acl, acl ? null
|
2020-09-29 04:44:42 +00:00
|
|
|
, enableLZ4 ? true, lz4 ? null
|
|
|
|
, enableOpenSSL ? true, openssl ? null
|
|
|
|
, enableXXHash ? true, xxHash ? null
|
|
|
|
, enableZstd ? true, zstd ? null
|
2012-01-18 20:38:24 +00:00
|
|
|
, enableCopyDevicesPatch ? false
|
2020-10-06 08:25:58 +00:00
|
|
|
, nixosTests
|
2009-02-03 22:13:35 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert enableACLs -> acl != null;
|
2020-09-29 04:44:42 +00:00
|
|
|
assert enableLZ4 -> lz4 != null;
|
|
|
|
assert enableOpenSSL -> openssl != null;
|
|
|
|
assert enableXXHash -> xxHash != null;
|
|
|
|
assert enableZstd -> zstd != null;
|
2005-11-22 22:39:09 +00:00
|
|
|
|
2016-02-13 17:50:07 +00:00
|
|
|
let
|
2021-03-26 05:13:53 +00:00
|
|
|
base = import ./base.nix { inherit lib fetchurl; };
|
2016-02-13 17:50:07 +00:00
|
|
|
in
|
2012-01-18 20:38:24 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-02-13 17:50:07 +00:00
|
|
|
name = "rsync-${base.version}";
|
2011-12-03 16:11:57 +00:00
|
|
|
|
2016-02-13 17:50:07 +00:00
|
|
|
mainSrc = base.src;
|
2009-02-03 22:13:35 +00:00
|
|
|
|
2018-01-29 12:39:35 +00:00
|
|
|
patchesSrc = base.upstreamPatchTarball;
|
2012-01-18 20:38:24 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
srcs = [mainSrc] ++ lib.optional enableCopyDevicesPatch patchesSrc;
|
|
|
|
patches = lib.optional enableCopyDevicesPatch "./patches/copy-devices.diff";
|
2012-01-18 20:38:24 +00:00
|
|
|
|
2020-09-29 04:44:42 +00:00
|
|
|
buildInputs = [libiconv zlib popt]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optional enableACLs acl
|
|
|
|
++ lib.optional enableZstd zstd
|
|
|
|
++ lib.optional enableLZ4 lz4
|
|
|
|
++ lib.optional enableOpenSSL openssl
|
|
|
|
++ lib.optional enableXXHash xxHash;
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [perl];
|
2009-02-03 22:13:35 +00:00
|
|
|
|
2020-11-01 10:38:54 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-nobody-group=nogroup"
|
|
|
|
|
|
|
|
# disable the included zlib explicitly as it otherwise still compiles and
|
|
|
|
# links them even.
|
|
|
|
"--with-included-zlib=no"
|
|
|
|
]
|
2020-10-20 18:27:09 +00:00
|
|
|
# Work around issue with cross-compilation:
|
|
|
|
# configure.sh: error: cannot run test program while cross compiling
|
|
|
|
# Remove once 3.2.4 or more recent is released.
|
|
|
|
# The following PR should fix the cross-compilation issue.
|
|
|
|
# Test using `nix-build -A pkgsCross.aarch64-multiplatform.rsync`.
|
|
|
|
# https://github.com/WayneD/rsync/commit/b7fab6f285ff0ff3816b109a8c3131b6ded0b484
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--enable-simd=no"
|
2020-10-20 18:27:09 +00:00
|
|
|
;
|
2014-05-05 12:55:34 +00:00
|
|
|
|
2020-08-13 13:31:17 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) rsyncd; };
|
|
|
|
|
2016-02-13 17:50:07 +00:00
|
|
|
meta = base.meta // {
|
2009-02-03 22:13:35 +00:00
|
|
|
description = "A fast incremental file transfer utility";
|
2021-01-15 13:21:58 +00:00
|
|
|
maintainers = with lib.maintainers; [ peti ehmry kampfschlaefer ];
|
2009-02-03 22:13:35 +00:00
|
|
|
};
|
2005-11-22 22:39:09 +00:00
|
|
|
}
|