acd-cli: add darwin build
This commit is contained in:
parent
42cff73feb
commit
c3614f71a2
|
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 { };
|
||||||
|
|
Loading…
Reference in New Issue