1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-17 17:42:45 +00:00

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;
[ cython msgpack openssl acl ];
[ cython msgpack openssl acl llfuse ];
preConfigure = ''
export ATTIC_OPENSSL_PREFIX="${openssl}"