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

60 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, gettext, pkgconfig, perl
2018-03-14 19:15:06 +00:00
, libidn2, zlib, pcre, libuuid, libiconv, libintl
, IOSocketSSL, LWP, python3, lzip
, libpsl ? null
, openssl ? null }:
stdenv.mkDerivation rec {
name = "wget-1.19.5";
src = fetchurl {
url = "mirror://gnu/wget/${name}.tar.lz";
sha256 = "0xfaxmlnih7dhkyks5wi4vrn0n1xshmy6gx6fb2k1120sprydyr9";
};
2017-03-11 07:18:57 +00:00
patches = [
./remove-runtime-dep-on-openssl-headers.patch
];
2015-06-23 00:00:57 +00:00
preConfigure = ''
2016-08-21 15:25:46 +00:00
patchShebangs doc
2015-06-23 00:00:57 +00:00
'' + 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
'';
2018-03-14 19:15:06 +00:00
nativeBuildInputs = [ gettext pkgconfig perl lzip libiconv libintl ];
buildInputs = [ libidn2 zlib pcre libuuid ]
++ stdenv.lib.optionals doCheck [ IOSocketSSL LWP python3 ]
++ stdenv.lib.optional (openssl != null) openssl
++ stdenv.lib.optional (libpsl != null) libpsl
2015-02-04 08:09:13 +00: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;
};
}