2015-04-13 18:22:09 +02:00
|
|
|
{ stdenv, fetchurl, gettext, libidn, pkgconfig
|
2014-10-30 08:27:28 +01:00
|
|
|
, perl, perlPackages, LWP, python3
|
2016-01-02 19:02:51 +01:00
|
|
|
, libiconv, libpsl ? null, openssl ? null }:
|
2008-02-02 21:39:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-12-12 11:30:32 +01:00
|
|
|
name = "wget-1.17.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";
|
2015-12-12 11:30:32 +01:00
|
|
|
sha256 = "1jcpvl5sxb2ag8yahpy370c5jlfb097a21k2mhsidh4wxdhrnmgy";
|
2008-02-02 21:39:44 +01:00
|
|
|
};
|
|
|
|
|
2015-06-23 02:00:57 +02:00
|
|
|
preConfigure = ''
|
|
|
|
for i in "doc/texi2pod.pl" "util/rmold.pl"; do
|
|
|
|
sed -i "$i" -e 's|/usr/bin.*perl|${perl}/bin/perl|g'
|
|
|
|
done
|
|
|
|
'' + 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
|
|
|
|
2015-05-08 14:59:50 +02:00
|
|
|
nativeBuildInputs = [ gettext pkgconfig ];
|
2015-05-07 17:30:20 +02:00
|
|
|
buildInputs = [ libidn libiconv libpsl ]
|
2014-10-30 08:27:28 +01:00
|
|
|
++ stdenv.lib.optionals doCheck [ perl perlPackages.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
|
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
|
|
|
};
|
|
|
|
}
|