From 9c509e25835fb29cb29c72ef1bea7722c96c07fa Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 18 Apr 2009 14:11:35 +0000 Subject: [PATCH] * Build wget with support for https. svn path=/nixpkgs/trunk/; revision=15126 --- pkgs/tools/networking/wget/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 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 {