2018-12-15 03:50:31 +00:00
|
|
|
{ stdenv, fetchurl, gettext, pkgconfig, perlPackages
|
2018-03-14 19:15:06 +00:00
|
|
|
, libidn2, zlib, pcre, libuuid, libiconv, libintl
|
2018-12-15 03:50:31 +00:00
|
|
|
, python3, lzip
|
2017-02-06 12:16:44 +00:00
|
|
|
, libpsl ? null
|
|
|
|
, openssl ? null }:
|
2008-02-02 20:39:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wget";
|
2019-04-05 18:59:48 +01:00
|
|
|
version = "1.20.3";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2008-02-02 20:39:44 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/wget/${pname}-${version}.tar.lz";
|
2019-04-05 18:59:48 +01:00
|
|
|
sha256 = "1frajd86ds8vz2hprq30wq8ya89z9dcxnwm8nwk12bbc47l7qq39";
|
2008-02-02 20:39:44 +00:00
|
|
|
};
|
|
|
|
|
2017-03-11 07:18:57 +00:00
|
|
|
patches = [
|
|
|
|
./remove-runtime-dep-on-openssl-headers.patch
|
|
|
|
];
|
2015-10-10 23:32:07 +01:00
|
|
|
|
2015-06-23 01:00:57 +01:00
|
|
|
preConfigure = ''
|
2016-08-21 16:25:46 +01:00
|
|
|
patchShebangs doc
|
|
|
|
|
2015-06-23 01:00:57 +01: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
|
|
|
|
'';
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2018-12-15 03:50:31 +00:00
|
|
|
nativeBuildInputs = [ gettext pkgconfig perlPackages.perl lzip libiconv libintl ];
|
2018-03-14 19:15:06 +00:00
|
|
|
buildInputs = [ libidn2 zlib pcre libuuid ]
|
2018-12-15 03:50:31 +00:00
|
|
|
++ stdenv.lib.optionals doCheck [ perlPackages.IOSocketSSL perlPackages.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 21:29:50 +01:00
|
|
|
++ stdenv.lib.optional (openssl != null) openssl
|
2017-02-06 12:16:44 +00:00
|
|
|
++ stdenv.lib.optional (libpsl != null) libpsl
|
2018-12-15 03:50:31 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin perlPackages.perl;
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2018-08-12 09:08:46 +01:00
|
|
|
configureFlags = [
|
|
|
|
(stdenv.lib.withFeatureAs (openssl != null) "ssl" "openssl")
|
2018-08-03 17:52:40 +01:00
|
|
|
];
|
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 21:29:50 +01: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 15:21:08 +01: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
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/wget/";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2014-10-30 07:27:28 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
platforms = platforms.all;
|
2008-02-02 20:39:44 +00:00
|
|
|
};
|
|
|
|
}
|