about summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-07-08 16:43:34 -0500
committerGitHub <noreply@github.com>2023-07-08 16:43:34 -0500
commita0c6cb3272daa78248ed07d072b274790abfafaa (patch)
treedb73b825fc9693fa3777e72219755580a0ac9947 /pkgs/applications/networking/sync
parent0b25b4c7c97eb07f883e44c62ada3bdbd368ecc5 (diff)
parent3d30a2c8a17a1d5e8201cf59a969d08a0ed70fd4 (diff)
Merge pull request #242040 from dotlambda/librclone-fix
librclone: fix build
Diffstat (limited to 'pkgs/applications/networking/sync')
-rw-r--r--pkgs/applications/networking/sync/rclone/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/networking/sync/rclone/default.nix b/pkgs/applications/networking/sync/rclone/default.nix
index a7b269378ea83..4900b95469520 100644
--- a/pkgs/applications/networking/sync/rclone/default.nix
+++ b/pkgs/applications/networking/sync/rclone/default.nix
@@ -1,6 +1,7 @@
 { lib, stdenv, buildGoModule, fetchFromGitHub, buildPackages, installShellFiles, fetchpatch
 , makeWrapper
 , enableCmount ? true, fuse, macfuse-stubs
+, librclone
 }:
 
 buildGoModule rec {
@@ -58,6 +59,10 @@ buildGoModule rec {
         --prefix LD_LIBRARY_PATH : "${fuse}/lib"
     '';
 
+  passthru.tests = {
+    inherit librclone;
+  };
+
   meta = with lib; {
     description = "Command line program to sync files and directories to and from major cloud storage";
     homepage = "https://rclone.org";