attic: add missing dependency on 'llfuse'

Without this one cannot mount the backup repository:

 $ attic mount /backups/backup.attic mnt
 attic: the "llfuse" module is required to use this feature
 attic: Exiting with failure status due to previous errors
This commit is contained in:
Bjørn Forsman 2015-01-02 15:06:48 +01:00
parent b8e860682b
commit ca9d370f56

View File

@ -10,7 +10,7 @@ python3Packages.buildPythonPackage rec {
}; };
propagatedBuildInputs = with python3Packages; propagatedBuildInputs = with python3Packages;
[ cython msgpack openssl acl ]; [ cython msgpack openssl acl llfuse ];
preConfigure = '' preConfigure = ''
export ATTIC_OPENSSL_PREFIX="${openssl}" export ATTIC_OPENSSL_PREFIX="${openssl}"