summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-07-07 22:44:29 +0000
committerLudovic Courtès <ludo@gnu.org>2009-07-07 22:44:29 +0000
commit0dcce7669eaa1879ea84ece61d80ce538b1545a8 (patch)
treea7bca8d9750b71a14122ca1867c2dca23cb76fbf /pkgs/tools
parent26b514830862d0ccee720c65901193bc9c6bbfe9 (diff)
Tahoe: Use `pysqlite', used by the `backup' command.
svn path=/nixpkgs/trunk/; revision=16231
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/p2p/tahoe/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/networking/p2p/tahoe/default.nix b/pkgs/tools/networking/p2p/tahoe/default.nix
index c0646037f575b..90ab9575f0f8d 100644
--- a/pkgs/tools/networking/p2p/tahoe/default.nix
+++ b/pkgs/tools/networking/p2p/tahoe/default.nix
@@ -1,5 +1,5 @@
 { fetchurl, unzip, buildPythonPackage, twisted, foolscap, nevow
-, simplejson, zfec, pycryptopp, nettools }:
+, simplejson, zfec, pycryptopp, pysqlite, nettools }:
 
 buildPythonPackage (rec {
   name = "tahoe-1.4.1";
@@ -29,8 +29,10 @@ buildPythonPackage (rec {
   '';
 
   buildInputs = [ unzip ];
+
+  # The `backup' command works best with `pysqlite'.
   propagatedBuildInputs = [
-    twisted foolscap nevow simplejson zfec pycryptopp
+    twisted foolscap nevow simplejson zfec pycryptopp pysqlite
   ];
 
   # FIXME: Many tests try to write to the Nix store or to $HOME, which