2017-02-06 13:16:44 +01:00
|
|
|
{ stdenv, fetchurl, gettext, pkgconfig, perl
|
|
|
|
, libidn2, zlib, pcre, libuuid, libiconv
|
|
|
|
, IOSocketSSL, LWP, python3
|
|
|
|
, libpsl ? null
|
|
|
|
, openssl ? null }:
|
2008-02-02 21:39:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-12 02:52:25 +01:00
|
|
|
name = "wget-1.19.1";
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2008-02-02 21:39:44 +01:00
|
|
|
src = fetchurl {
|
2013-02-01 22:16:56 +01:00
|
|
|
url = "mirror://gnu/wget/${name}.tar.xz";
|
2017-02-12 02:52:25 +01:00
|
|
|
sha256 = "1ljcfhbkdsd0zjfm520rbl1ai62fc34i7c45sfj244l8f6b0p58c";
|
2008-02-02 21:39:44 +01:00
|
|
|
};
|
|
|
|
|
2017-03-11 08:18:57 +01:00
|
|
|
patches = [
|
|
|
|
./remove-runtime-dep-on-openssl-headers.patch
|
|
|
|
(fetchurl {
|
|
|
|
name = "CVE-2017-6508";
|
|
|
|
url = "http://git.savannah.gnu.org/cgit/wget.git/patch/?id=4d729e322fae359a1aefaafec1144764a54e8ad4";
|
|
|
|
sha256 = "14r0c5y3w3gavxp2d9yq8xji82izi5sx0sjv6jpmk6zp6cnr7cjf";
|
|
|
|
})
|
|
|
|
];
|
2015-10-11 00:32:07 +02:00
|
|
|
|
2015-06-23 02:00:57 +02:00
|
|
|
preConfigure = ''
|
2016-08-21 17:25:46 +02:00
|
|
|
patchShebangs doc
|
|
|
|
|
2015-06-23 02:00:57 +02: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 01:32:12 +01:00
|
|
|
|
2016-08-21 17:25:46 +02:00
|
|
|
nativeBuildInputs = [ gettext pkgconfig perl ];
|
2017-02-06 13:16:44 +01: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 22:29:50 +02:00
|
|
|
++ stdenv.lib.optional (openssl != null) openssl
|
2017-02-06 13:16:44 +01:00
|
|
|
++ stdenv.lib.optional (libpsl != null) libpsl
|
2015-02-04 09:09:13 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin perl;
|
2009-11-08 01:32:12 +01: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 22:29:50 +02:00
|
|
|
if openssl != null then "--with-ssl=openssl" else "--without-ssl";
|
2009-11-08 01:32:12 +01: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 22:29:50 +02:00
|
|
|
doCheck = false;
|
2008-02-02 21:39:44 +01:00
|
|
|
|
2014-10-30 08:27:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Tool for retrieving files using HTTP, HTTPS, and FTP";
|
2009-11-08 01:32:12 +01: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 08:27:28 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2009-11-08 01:32:12 +01:00
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/wget/;
|
|
|
|
|
2014-10-30 08:27:28 +01:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
platforms = platforms.all;
|
2008-02-02 21:39:44 +01:00
|
|
|
};
|
|
|
|
}
|