* Build wget with support for https.

svn path=/nixpkgs/trunk/; revision=15126
This commit is contained in:
Eelco Dolstra 2009-04-18 14:11:35 +00:00
parent cee387e845
commit 9c509e2583
2 changed files with 3 additions and 3 deletions

View file

@ -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.";

View file

@ -1416,7 +1416,7 @@ let
};
wget = import ../tools/networking/wget {
inherit fetchurl stdenv gettext;
inherit fetchurl stdenv gettext openssl;
};
which = import ../tools/system/which {