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

authored by Audrey Dutcher and committed by Sandro Jäckel 7b97e8fd e202aa82

+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;