mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
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:
commit
27f6d7bdfb
@ -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