about summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/sync')
-rw-r--r--pkgs/applications/networking/sync/rsync/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix
index cc80ddf94548a..2728d8484ef12 100644
--- a/pkgs/applications/networking/sync/rsync/default.nix
+++ b/pkgs/applications/networking/sync/rsync/default.nix
@@ -5,6 +5,7 @@
 , enableXXHash ? true, xxHash ? null
 , enableZstd ? true, zstd ? null
 , enableCopyDevicesPatch ? false
+, nixosTests
 }:
 
 assert enableACLs -> acl != null;
@@ -36,6 +37,8 @@ stdenv.mkDerivation rec {
 
   configureFlags = ["--with-nobody-group=nogroup"];
 
+  passthru.tests = { inherit (nixosTests) rsyncd; };
+
   meta = base.meta // {
     description = "A fast incremental file transfer utility";
     maintainers = with stdenv.lib.maintainers; [ peti ehmry kampfschlaefer ];