about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-05-19 18:00:04 +0200
committerGitHub <noreply@github.com>2024-05-19 18:00:04 +0200
commit27f6d7bdfb8236dbcbb0e0483b8b6d3309adbf73 (patch)
tree8ec9afd9f5ede874f9739e2c94b8e1bb94fc300b /pkgs/applications
parent5497cebc9257c78cf8486a70380d2a68953b0008 (diff)
parent7b97e8fd384eaf4fee289a4546bc9e0a5bccfe2d (diff)
Merge pull request #311785 from rhelmot/freebsd-minimal3/rsync
rsync: Make enableLZ4 and enableOpenSSL parameters work when set to false
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/sync/rsync/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix
index 8846bea0a49b4..5216617bf4d1a 100644
--- a/pkgs/applications/networking/sync/rsync/default.nix
+++ b/pkgs/applications/networking/sync/rsync/default.nix
@@ -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;