Merge pull request #298717 from rhelmot/freebsd-minimal2/rsync

rsync: Explicitly disable configure feature flags when nixpkgs feature flags are disabled

authored by

Jörg Thalheim and committed by
GitHub
712a57c1 8ffcc128

+4
+4
pkgs/applications/networking/sync/rsync/default.nix
··· 54 ] ++ lib.optionals (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64) [ 55 # fix `multiversioning needs 'ifunc' which is not supported on this target` error 56 "--disable-roll-simd" 57 ]; 58 59 enableParallelBuilding = true;
··· 54 ] ++ lib.optionals (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64) [ 55 # fix `multiversioning needs 'ifunc' which is not supported on this target` error 56 "--disable-roll-simd" 57 + ] ++ lib.optionals (!enableZstd) [ 58 + "--disable-zstd" 59 + ] ++ lib.optionals (!enableXXHash) [ 60 + "--disable-xxhash" 61 ]; 62 63 enableParallelBuilding = true;