summary refs log tree commit diff
path: root/pkgs/applications/networking/sync
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2021-03-27 15:58:47 +0900
committermidchildan <git@midchildan.org>2021-04-20 00:51:51 +0900
commitc3614f71a2e3c384f04ce1cf4367b809f619447e (patch)
tree7d329807478f36e390a6f58aebd2f3797da287c3 /pkgs/applications/networking/sync
parent42cff73feb7047dba689108a581e5c627e4f1d4c (diff)
downloadnixpkgs-c3614f71a2e3c384f04ce1cf4367b809f619447e.tar
nixpkgs-c3614f71a2e3c384f04ce1cf4367b809f619447e.tar.gz
nixpkgs-c3614f71a2e3c384f04ce1cf4367b809f619447e.tar.bz2
nixpkgs-c3614f71a2e3c384f04ce1cf4367b809f619447e.tar.lz
nixpkgs-c3614f71a2e3c384f04ce1cf4367b809f619447e.tar.xz
nixpkgs-c3614f71a2e3c384f04ce1cf4367b809f619447e.tar.zst
nixpkgs-c3614f71a2e3c384f04ce1cf4367b809f619447e.zip
acd-cli: add darwin build
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 ];
   };
 }