acd-cli: add darwin build

This commit is contained in:
midchildan 2021-03-27 15:58:47 +09:00
parent 42cff73feb
commit c3614f71a2
No known key found for this signature in database
GPG Key ID: D9A5748BACC6E3C2
2 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, buildPythonApplication, fuse { lib, fetchFromGitHub, buildPythonApplication, fuse
, appdirs, colorama, dateutil, requests, requests_toolbelt , appdirs, colorama, dateutil, requests, requests_toolbelt
, fusepy, sqlalchemy }: , fusepy, sqlalchemy, setuptools }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "acd_cli"; pname = "acd_cli";
@ -16,7 +16,7 @@ buildPythonApplication rec {
}; };
propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests
requests_toolbelt sqlalchemy ]; requests_toolbelt setuptools sqlalchemy ];
makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ]; 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"; description = "A command line interface and FUSE filesystem for Amazon Cloud Drive";
homepage = "https://github.com/yadayada/acd_cli"; homepage = "https://github.com/yadayada/acd_cli";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ edwtjo ]; maintainers = with maintainers; [ edwtjo ];
}; };
} }

View File

@ -21573,7 +21573,7 @@ in
acd-cli = callPackage ../applications/networking/sync/acd_cli { acd-cli = callPackage ../applications/networking/sync/acd_cli {
inherit (python3Packages) inherit (python3Packages)
buildPythonApplication appdirs colorama dateutil buildPythonApplication appdirs colorama dateutil
requests requests_toolbelt sqlalchemy fusepy; requests requests_toolbelt setuptools sqlalchemy fusepy;
}; };
adobe-reader = pkgsi686Linux.callPackage ../applications/misc/adobe-reader { }; adobe-reader = pkgsi686Linux.callPackage ../applications/misc/adobe-reader { };