pythonPackages.acd_cli: add libfuse a program dependency

This commit is contained in:
Edward Tjörnhammar 2015-11-29 21:00:15 +01:00
parent 0b9c4af74a
commit 67cbf9ae6f

View file

@ -217,6 +217,12 @@ in modules // {
propagatedBuildInputs = with self; [ appdirs colorama dateutil requests2 requests_toolbelt sqlalchemy ];
postInstall = ''
for prog in "$out/bin/"*; do
wrapProgram "$prog" --prefix LIBFUSE_PATH : "${pkgs.fuse}/lib/libfuse.so"
done
'';
meta = {
description = "A command line interface and FUSE filesystem for Amazon Cloud Drive";
homepage = https://github.com/yadayada/acd_cli;