nixpkgs/pkgs/tools/networking/wget/default.nix

58 lines
1.8 KiB
Nix
Raw Normal View History

2015-04-13 19:22:09 +03:00
{ stdenv, fetchurl, gettext, libidn, pkgconfig
, perl, perlPackages, LWP, python3
, libiconv, libpsl ? null, openssl ? null }:
stdenv.mkDerivation rec {
2016-06-20 23:15:46 +03:00
name = "wget-1.18";
src = fetchurl {
url = "mirror://gnu/wget/${name}.tar.xz";
2016-06-20 23:15:46 +03:00
sha256 = "1hcwx8ww3sxzdskkx3l7q70a7wd6569yrnjkw9pw013cf9smpddm";
};
patches = [ ./remove-runtime-dep-on-openssl-headers.patch ];
2015-06-23 03:00:57 +03: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"
'';
2015-05-08 15:59:50 +03:00
nativeBuildInputs = [ gettext pkgconfig ];
buildInputs = [ libidn libiconv libpsl ]
++ stdenv.lib.optionals doCheck [ perl perlPackages.IOSocketSSL LWP python3 ]
++ stdenv.lib.optional (openssl != null) openssl
2015-02-04 11:09:13 +03:00
++ stdenv.lib.optional stdenv.isDarwin perl;
configureFlags =
if openssl != null then "--with-ssl=openssl" else "--without-ssl";
doCheck = false;
meta = with stdenv.lib; {
description = "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 = licenses.gpl3Plus;
homepage = http://www.gnu.org/software/wget/;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.all;
};
}