summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-20 18:59:43 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-20 18:59:43 +0000
commit45fed14272a77311b7ee7ab89d52629bfa084765 (patch)
treeaed856f5a10ff3bd7cd3cef380974b18ef24d604 /pkgs/tools
parent95cbf4ed555669bea9f0ea37678665db452c2cd8 (diff)
downloadnixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.gz
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.bz2
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.lz
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.xz
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.zst
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.zip
* Revert r32435. We'll be doing a stdenv merge in a few days, so
  let's put it in there rather than having the Nth near-complete
  rebuild of the trunk in a few days.

svn path=/nixpkgs/trunk/; revision=32436
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/offlineimap/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/networking/offlineimap/default.nix b/pkgs/tools/networking/offlineimap/default.nix
index 007c8f7c6e0..8f0dd8e9a6c 100644
--- a/pkgs/tools/networking/offlineimap/default.nix
+++ b/pkgs/tools/networking/offlineimap/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, buildPythonPackage }:
+{ fetchurl, buildPythonPackage, ssl }:
 
 buildPythonPackage {
   name = "offlineimap-6.2.0.2";
@@ -8,6 +8,8 @@ buildPythonPackage {
     sha256 = "1w69qv1dm37m53k8cd068lk5z3qjlscnjxr397gs8kdsfds67v7c";
   };
 
+  propagatedBuildInputs = [ ssl ];
+
   doCheck = false;
 
   meta = {