summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-18 14:11:35 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-18 14:11:35 +0000
commit9c509e25835fb29cb29c72ef1bea7722c96c07fa (patch)
treedc1c145b9f589a85ec69feaa409c7aed6fb2b3cb /pkgs
parentcee387e84503f01988099759be5cd0da0406ca78 (diff)
downloadnixlib-9c509e25835fb29cb29c72ef1bea7722c96c07fa.tar
nixlib-9c509e25835fb29cb29c72ef1bea7722c96c07fa.tar.gz
nixlib-9c509e25835fb29cb29c72ef1bea7722c96c07fa.tar.bz2
nixlib-9c509e25835fb29cb29c72ef1bea7722c96c07fa.tar.lz
nixlib-9c509e25835fb29cb29c72ef1bea7722c96c07fa.tar.xz
nixlib-9c509e25835fb29cb29c72ef1bea7722c96c07fa.tar.zst
nixlib-9c509e25835fb29cb29c72ef1bea7722c96c07fa.zip
* Build wget with support for https.
svn path=/nixpkgs/trunk/; revision=15126
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/wget/default.nix4
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix
index 9ab6fbb81330..a4618a53452d 100644
--- a/pkgs/tools/networking/wget/default.nix
+++ b/pkgs/tools/networking/wget/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, gettext}:
+{stdenv, fetchurl, gettext, openssl ? null}:
 
 stdenv.mkDerivation rec {
   name = "wget-1.11.4";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "1yr7w182n7lvkajvq07wnw65sw2vmxjkc3611kpc728vhvi54zwb";
   };
 
-  buildInputs = [gettext];
+  buildInputs = [gettext openssl];
 
   meta = {
     description = "A console downloading program. Has some features for mirroring sites.";
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index aa9399e429ea..c8f3110055af 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1416,7 +1416,7 @@ let
   };
 
   wget = import ../tools/networking/wget {
-    inherit fetchurl stdenv gettext;
+    inherit fetchurl stdenv gettext openssl;
   };
 
   which = import ../tools/system/which {