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

rsync: Make enableLZ4 and enableOpenSSL parameters work when set to false
This commit is contained in:
Sandro 2024-05-19 18:00:04 +02:00 committed by GitHub
commit 27f6d7bdfb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;