mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
rsync: Make enableLZ4 and enableOpenSSL parameters work when set to false
This commit is contained in:
parent
e202aa82c4
commit
7b97e8fd38
@ -50,6 +50,10 @@ stdenv.mkDerivation rec {
|
|||||||
"--disable-zstd"
|
"--disable-zstd"
|
||||||
] ++ lib.optionals (!enableXXHash) [
|
] ++ lib.optionals (!enableXXHash) [
|
||||||
"--disable-xxhash"
|
"--disable-xxhash"
|
||||||
|
] ++ lib.optionals (!enableLZ4) [
|
||||||
|
"--disable-lz4"
|
||||||
|
] ++ lib.optionals (!enableOpenSSL) [
|
||||||
|
"--disable-openssl"
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user