Merge pull request #311785 from rhelmot/freebsd-minimal3/rsync

rsync: Make enableLZ4 and enableOpenSSL parameters work when set to false

authored by Sandro and committed by GitHub 27f6d7bd 5497cebc

+4
+4
pkgs/applications/networking/sync/rsync/default.nix
··· 50 50 "--disable-zstd" 51 51 ] ++ lib.optionals (!enableXXHash) [ 52 52 "--disable-xxhash" 53 + ] ++ lib.optionals (!enableLZ4) [ 54 + "--disable-lz4" 55 + ] ++ lib.optionals (!enableOpenSSL) [ 56 + "--disable-openssl" 53 57 ]; 54 58 55 59 enableParallelBuilding = true;