mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
7c1096ab99
The rsync build tries to use IFUNC for SIMD optimizations on x86_64, which has to be disabled for musl.
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, perl
|
|
, libiconv
|
|
, zlib
|
|
, popt
|
|
, enableACLs ? lib.meta.availableOn stdenv.hostPlatform acl
|
|
, acl
|
|
, enableLZ4 ? true
|
|
, lz4
|
|
, enableOpenSSL ? true
|
|
, openssl
|
|
, enableXXHash ? true
|
|
, xxHash
|
|
, enableZstd ? true
|
|
, zstd
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rsync";
|
|
version = "3.2.7";
|
|
|
|
src = fetchurl {
|
|
# signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5
|
|
url = "mirror://samba/rsync/src/rsync-${version}.tar.gz";
|
|
sha256 = "sha256-Tn2dP27RCHjFjF+3JKZ9rPS2qsc0CxPkiPstxBNG8rs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
buildInputs = [ libiconv zlib popt ]
|
|
++ lib.optional enableACLs acl
|
|
++ lib.optional enableZstd zstd
|
|
++ lib.optional enableLZ4 lz4
|
|
++ lib.optional enableOpenSSL openssl
|
|
++ lib.optional enableXXHash xxHash;
|
|
|
|
configureFlags = [
|
|
"--with-nobody-group=nogroup"
|
|
|
|
# disable the included zlib explicitly as it otherwise still compiles and
|
|
# links them even.
|
|
"--with-included-zlib=no"
|
|
] ++ lib.optionals (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64) [
|
|
# fix `multiversioning needs 'ifunc' which is not supported on this target` error
|
|
"--disable-roll-simd"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = { inherit (nixosTests) rsyncd; };
|
|
|
|
meta = with lib; {
|
|
description = "Fast incremental file transfer utility";
|
|
homepage = "https://rsync.samba.org/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with lib.maintainers; [ ehmry kampfschlaefer ivan ];
|
|
};
|
|
}
|