2017-02-06 12:16:44 +00:00
|
|
|
{ stdenv, fetchurl, gettext, pkgconfig, perl
|
|
|
|
, libidn2, zlib, pcre, libuuid, libiconv
|
|
|
|
, IOSocketSSL, LWP, python3
|
|
|
|
, libpsl ? null
|
|
|
|
, openssl ? null }:
|
2008-02-02 20:39:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-12 01:52:25 +00:00
|
|
|
name = "wget-1.19.1";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2008-02-02 20:39:44 +00:00
|
|
|
src = fetchurl {
|
2013-02-01 21:16:56 +00:00
|
|
|
url = "mirror://gnu/wget/${name}.tar.xz";
|
2017-02-12 01:52:25 +00:00
|
|
|
sha256 = "1ljcfhbkdsd0zjfm520rbl1ai62fc34i7c45sfj244l8f6b0p58c";
|
2008-02-02 20:39:44 +00:00
|
|
|
};
|
|
|
|
|
2015-10-10 22:32:07 +00:00
|
|
|
patches = [ ./remove-runtime-dep-on-openssl-headers.patch ];
|
|
|
|
|
2015-06-23 00:00:57 +00:00
|
|
|
preConfigure = ''
|
2016-08-21 15:25:46 +00:00
|
|
|
patchShebangs doc
|
|
|
|
|
2015-06-23 00:00:57 +00:00
|
|
|
'' + stdenv.lib.optionalString doCheck ''
|
|
|
|
# Work around lack of DNS resolution in chroots.
|
|
|
|
for i in "tests/"*.pm "tests/"*.px
|
|
|
|
do
|
|
|
|
sed -i "$i" -e's/localhost/127.0.0.1/g'
|
|
|
|
done
|
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
export LIBS="-liconv -lintl"
|
|
|
|
'';
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2016-08-21 15:25:46 +00:00
|
|
|
nativeBuildInputs = [ gettext pkgconfig perl ];
|
2017-02-06 12:16:44 +00:00
|
|
|
buildInputs = [ libidn2 libiconv zlib pcre libuuid ]
|
|
|
|
++ stdenv.lib.optionals doCheck [ IOSocketSSL LWP python3 ]
|
wget: Reduce closure size
This reduces the wget closure from 377 MiB to 49 MiB, which is in
particular good for EC2 images, since they include wget. The main
changes:
* Disable libpsl - this isn't very big itself, but it pulls in libicu,
which is 36 MiB. It also adds build-time dependencies on packages
like gtk-doc, dblatex, tetex etc.
* Replace gnutls with openssl. The former pulls in runtime
dependencies like guile, python, binutils, gcc, ncurses, etc.
2015-09-28 20:29:50 +00:00
|
|
|
++ stdenv.lib.optional (openssl != null) openssl
|
2017-02-06 12:16:44 +00:00
|
|
|
++ stdenv.lib.optional (libpsl != null) libpsl
|
2015-02-04 08:09:13 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin perl;
|
2009-11-08 00:32:12 +00:00
|
|
|
|
|
|
|
configureFlags =
|
wget: Reduce closure size
This reduces the wget closure from 377 MiB to 49 MiB, which is in
particular good for EC2 images, since they include wget. The main
changes:
* Disable libpsl - this isn't very big itself, but it pulls in libicu,
which is 36 MiB. It also adds build-time dependencies on packages
like gtk-doc, dblatex, tetex etc.
* Replace gnutls with openssl. The former pulls in runtime
dependencies like guile, python, binutils, gcc, ncurses, etc.
2015-09-28 20:29:50 +00:00
|
|
|
if openssl != null then "--with-ssl=openssl" else "--without-ssl";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
wget: Reduce closure size
This reduces the wget closure from 377 MiB to 49 MiB, which is in
particular good for EC2 images, since they include wget. The main
changes:
* Disable libpsl - this isn't very big itself, but it pulls in libicu,
which is 36 MiB. It also adds build-time dependencies on packages
like gtk-doc, dblatex, tetex etc.
* Replace gnutls with openssl. The former pulls in runtime
dependencies like guile, python, binutils, gcc, ncurses, etc.
2015-09-28 20:29:50 +00:00
|
|
|
doCheck = false;
|
2008-02-02 20:39:44 +00:00
|
|
|
|
2014-10-30 07:27:28 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Tool for retrieving files using HTTP, HTTPS, and FTP";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU Wget is a free software package for retrieving files using HTTP,
|
|
|
|
HTTPS and FTP, the most widely-used Internet protocols. It is a
|
|
|
|
non-interactive commandline tool, so it may easily be called from
|
|
|
|
scripts, cron jobs, terminals without X-Windows support, etc.
|
|
|
|
'';
|
|
|
|
|
2014-10-30 07:27:28 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2009-11-08 00:32:12 +00:00
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/wget/;
|
|
|
|
|
2014-10-30 07:27:28 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
platforms = platforms.all;
|
2008-02-02 20:39:44 +00:00
|
|
|
};
|
|
|
|
}
|