forked from mirrors/nixpkgs
* Build wget with support for https.
svn path=/nixpkgs/trunk/; revision=15126
This commit is contained in:
parent
cee387e845
commit
9c509e2583
|
@ -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.";
|
||||
|
|
|
@ -1416,7 +1416,7 @@ let
|
|||
};
|
||||
|
||||
wget = import ../tools/networking/wget {
|
||||
inherit fetchurl stdenv gettext;
|
||||
inherit fetchurl stdenv gettext openssl;
|
||||
};
|
||||
|
||||
which = import ../tools/system/which {
|
||||
|
|
Loading…
Reference in a new issue