nixpkgs/pkgs/tools/networking/wget/default.nix
Eric Kow 29b2aec233 wget darwin: disable Test-iri-disabled.px
This test fails on MacOS X. The failure has something to do with
the tests expecting filesystems to accept/store filenames as
bytes. On the HFS+ filesystem, however, filenames are Unicode
characters (Normalisation Form D).

This wget ticket appears to be relevant
    http://savannah.gnu.org/bugs/index.php?27541

The maintainer does not seem to think that this test
failure represents a problem in practice:
    http://article.gmane.org/gmane.comp.web.wget.general/8988

But this patch should be revisited/removed if this aspect of wget is
ever addressed in the future.

NB: I'm also a bit concerned/confused that none of the tests mentioned
in that message seem to fail, so I'm not 100% sure if this is the
relevant issue.
2013-11-08 09:36:42 +00:00

56 lines
1.5 KiB
Nix

{ stdenv, fetchurl, gettext, perl, LWP, gnutls ? null }:
stdenv.mkDerivation rec {
name = "wget-1.14";
src = fetchurl {
url = "mirror://gnu/wget/${name}.tar.xz";
sha256 = "0yqllj3nv9p3vqbdm6j4nvpjcwf1y19rq8sd966nrbd2qvvxfq8p";
};
patches = stdenv.lib.optional stdenv.isDarwin ./iri-test.patch;
preConfigure = stdenv.lib.optionalString doCheck
'' 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
# 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
'';
nativeBuildInputs = [ gettext ];
buildInputs =
stdenv.lib.optionals doCheck [ perl LWP ]
++ stdenv.lib.optional (gnutls != null) gnutls;
configureFlags =
if gnutls != null
then "--with-ssl=gnutls"
else "--without-ssl";
doCheck = (perl != null);
meta = {
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 = [ ];
platforms = stdenv.lib.platforms.all;
};
}