2015-04-13 17:22:09 +01:00
|
|
|
{ stdenv, fetchurl, gettext, libidn, pkgconfig
|
2014-10-30 07:27:28 +00:00
|
|
|
, perl, perlPackages, LWP, python3
|
2016-01-02 18:02:51 +00:00
|
|
|
, libiconv, libpsl ? null, openssl ? null }:
|
2008-02-02 20:39:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-20 21:15:46 +01:00
|
|
|
name = "wget-1.18";
|
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";
|
2016-06-20 21:15:46 +01:00
|
|
|
sha256 = "1hcwx8ww3sxzdskkx3l7q70a7wd6569yrnjkw9pw013cf9smpddm";
|
2008-02-02 20:39:44 +00:00
|
|
|
};
|
|
|
|
|
2015-10-10 23:32:07 +01:00
|
|
|
patches = [ ./remove-runtime-dep-on-openssl-headers.patch ];
|
|
|
|
|
2015-06-23 01:00:57 +01: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 00:32:12 +00:00
|
|
|
|
2015-05-08 13:59:50 +01:00
|
|
|
nativeBuildInputs = [ gettext pkgconfig ];
|
2015-05-07 16:30:20 +01:00
|
|
|
buildInputs = [ libidn libiconv libpsl ]
|
2014-10-30 07:27:28 +00: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 21:29:50 +01:00
|
|
|
++ stdenv.lib.optional (openssl != null) openssl
|
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 21:29:50 +01: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 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
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|