summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-04-22 03:27:36 +0200
committerGitHub <noreply@github.com>2021-04-22 03:27:36 +0200
commit2df2e5f330a015c2f3c807441e41c334f00f09e6 (patch)
treed5670b8e197b6a64c7c222869f9f4be023faf9d9 /pkgs/applications/networking/sync
parent3eb8f4d15c6b3fbb0170045df40b43cfd07d5d10 (diff)
parent80651c123ee99f36f478e4248024a0e53ac7ada7 (diff)
downloadnixpkgs-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar
nixpkgs-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.gz
nixpkgs-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.bz2
nixpkgs-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.lz
nixpkgs-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.xz
nixpkgs-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.zst
nixpkgs-2df2e5f330a015c2f3c807441e41c334f00f09e6.zip
Merge pull request #118269 from midchildan/feat/fuse/add-darwin
Diffstat (limited to 'pkgs/applications/networking/sync')
-rw-r--r--pkgs/applications/networking/sync/acd_cli/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/networking/sync/acd_cli/default.nix b/pkgs/applications/networking/sync/acd_cli/default.nix
index 49fc578377c..519242b887c 100644
--- a/pkgs/applications/networking/sync/acd_cli/default.nix
+++ b/pkgs/applications/networking/sync/acd_cli/default.nix
@@ -1,6 +1,6 @@
 { lib, fetchFromGitHub, buildPythonApplication, fuse
 , appdirs, colorama, dateutil, requests, requests_toolbelt
-, fusepy, sqlalchemy }:
+, fusepy, sqlalchemy, setuptools }:
 
 buildPythonApplication rec {
   pname = "acd_cli";
@@ -16,7 +16,7 @@ buildPythonApplication rec {
   };
 
   propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests
-                            requests_toolbelt sqlalchemy ];
+                            requests_toolbelt setuptools sqlalchemy ];
 
   makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ];
 
@@ -34,7 +34,6 @@ buildPythonApplication rec {
     description = "A command line interface and FUSE filesystem for Amazon Cloud Drive";
     homepage = "https://github.com/yadayada/acd_cli";
     license = licenses.gpl2;
-    platforms = platforms.linux;
     maintainers = with maintainers; [ edwtjo ];
   };
 }