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

This commit is contained in:
Audrey Dutcher 2024-05-14 15:07:50 -07:00 committed by Sandro Jäckel
parent e202aa82c4
commit 7b97e8fd38
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -50,6 +50,10 @@ stdenv.mkDerivation rec {
"--disable-zstd"
] ++ lib.optionals (!enableXXHash) [
"--disable-xxhash"
] ++ lib.optionals (!enableLZ4) [
"--disable-lz4"
] ++ lib.optionals (!enableOpenSSL) [
"--disable-openssl"
];
enableParallelBuilding = true;