diff options
author | Leo Famulari <leo@famulari.name> | 2016-03-14 19:34:23 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-03-24 15:30:51 -0400 |
commit | 5a39b07f8aa5dc88566cf7fe199eac1e9d3f90ee (patch) | |
tree | 7936ef8570507d852a836f74a0b9d2767497eb0f | |
parent | cd0569c49877a17785ab7dcd9185c5be72e7304c (diff) | |
download | patches-5a39b07f8aa5dc88566cf7fe199eac1e9d3f90ee.tar patches-5a39b07f8aa5dc88566cf7fe199eac1e9d3f90ee.tar.gz |
gnu: attic: Specify dependency on python-llfuse-0.41.
* gnu/packages/backup.scm (attic)[inputs]: Specify dependency on
python-llfuse-0.41.
-rw-r--r-- | gnu/packages/backup.scm | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index aa8ccbce69..4a69b7acad 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -348,8 +348,16 @@ rdiff-backup is easy to use and settings have sensible defaults.") (inputs `(("acl" ,acl) ("openssl" ,openssl) - ("python-llfuse" ,python-llfuse) - ("python-msgpack" ,python-msgpack))) + ("python-msgpack" ,python-msgpack) + + ;; Attic is probably incompatible with llfuse > 0.41. + ;; These links are to discussions of llfuse compatibility from + ;; the borg project. Borg is a recent fork of attic, and attic + ;; has not been updated since the fork, so it's likely that + ;; llfuse compatibility requirements are still the same. + ;; https://github.com/borgbackup/borg/issues/642 + ;; https://github.com/borgbackup/borg/issues/643 + ("python-llfuse" ,python-llfuse-0.41))) (synopsis "Deduplicating backup program") (description "Attic is a deduplicating backup program. The main goal of Attic is to provide an efficient and secure way to backup data. The data |