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:
parent
b8e860682b
commit
ca9d370f56
|
@ -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}"
|
||||
|
|
Loading…
Reference in a new issue