2010-04-13 12:11:42 +02:00
|
|
|
{ stdenv, fetchurl, gettext, perl, LWP, gnutls ? null }:
|
2008-02-02 21:39:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-09-05 01:05:48 +02:00
|
|
|
name = "wget-1.13.3";
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2008-02-02 21:39:44 +01:00
|
|
|
src = fetchurl {
|
2011-09-05 01:05:48 +02:00
|
|
|
url = "mirror://gnu/wget/${name}.tar.gz";
|
|
|
|
sha256 = "07wxl38qiy95k3hv2fd1sglgrlp6z920pr9mcfsj8dg7iaxbhppi";
|
2008-02-02 21:39:44 +01:00
|
|
|
};
|
|
|
|
|
2009-11-08 01:32:12 +01:00
|
|
|
preConfigure =
|
|
|
|
'' for i in "doc/texi2pod.pl" "tests/run-px" "util/rmold.pl"
|
|
|
|
do
|
|
|
|
sed -i "$i" -e 's|/usr/bin.*perl|${perl}/bin/perl|g'
|
|
|
|
done
|
2010-04-13 12:11:42 +02:00
|
|
|
|
|
|
|
# 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 01:32:12 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ gettext perl ]
|
2010-04-13 12:11:42 +02:00
|
|
|
++ stdenv.lib.optional doCheck LWP
|
2009-11-08 01:32:12 +01:00
|
|
|
++ stdenv.lib.optional (gnutls != null) gnutls;
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
if gnutls != null
|
|
|
|
then "--with-ssl=gnutls"
|
|
|
|
else "";
|
|
|
|
|
|
|
|
doCheck = true;
|
2008-02-02 21:39:44 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-11-08 01:32:12 +01:00
|
|
|
description = "GNU Wget, a tool for retrieving files using HTTP, HTTPS, and FTP";
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/wget/;
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2010-04-13 12:11:42 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-02-02 21:39:44 +01:00
|
|
|
};
|
|
|
|
}
|