From ca9d370f5604d76da19d10a4b669c851fc39d889 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= <bjorn.forsman@gmail.com>
Date: Fri, 2 Jan 2015 15:06:48 +0100
Subject: [PATCH] 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
---
 pkgs/tools/backup/attic/default.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgs/tools/backup/attic/default.nix b/pkgs/tools/backup/attic/default.nix
index 99190021e23c..40882f04d161 100644
--- a/pkgs/tools/backup/attic/default.nix
+++ b/pkgs/tools/backup/attic/default.nix
@@ -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}"