diff options
author | Eelco Dolstra | 2009-04-18 14:11:35 +0000 |
---|---|---|
committer | Eelco Dolstra | 2009-04-18 14:11:35 +0000 |
commit | 9c509e25835fb29cb29c72ef1bea7722c96c07fa (patch) | |
tree | dc1c145b9f589a85ec69feaa409c7aed6fb2b3cb | |
parent | cee387e84503f01988099759be5cd0da0406ca78 (diff) |
* Build wget with support for https.
svn path=/nixpkgs/trunk/; revision=15126
-rw-r--r-- | pkgs/tools/networking/wget/default.nix | 4 | ||||
-rw-r--r-- | 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 { |