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

65 lines
1.9 KiB
Nix
Raw Normal View History

2021-01-16 19:51:22 -08:00
{ lib, stdenv, fetchurl, gettext, pkg-config, perlPackages
2018-03-14 12:15:06 -07:00
, libidn2, zlib, pcre, libuuid, libiconv, libintl
, python3, lzip
, libpsl ? null
, openssl ? null }:
stdenv.mkDerivation rec {
pname = "wget";
2021-03-09 21:26:10 -08:00
version = "1.21.1";
src = fetchurl {
url = "mirror://gnu/wget/${pname}-${version}.tar.lz";
2021-03-09 21:26:10 -08:00
sha256 = "sha256-25u+U0fm+qBvx4gF7rgIsmiXlFXq2QA6YIVpydT8kK0=";
};
2017-03-10 23:18:57 -08:00
patches = [
./remove-runtime-dep-on-openssl-headers.patch
];
2015-06-22 17:00:57 -07:00
preConfigure = ''
2016-08-21 08:25:46 -07:00
patchShebangs doc
2021-01-15 01:19:50 -08:00
'' + lib.optionalString doCheck ''
2015-06-22 17:00:57 -07: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
'';
2021-01-16 19:51:22 -08:00
nativeBuildInputs = [ gettext pkg-config perlPackages.perl lzip libiconv libintl ];
2018-03-14 12:15:06 -07:00
buildInputs = [ libidn2 zlib pcre libuuid ]
2021-01-15 01:19:50 -08:00
++ lib.optionals doCheck [ perlPackages.IOSocketSSL perlPackages.LWP python3 ]
++ lib.optional (openssl != null) openssl
++ lib.optional (libpsl != null) libpsl
++ lib.optional stdenv.isDarwin perlPackages.perl;
configureFlags = [
2021-01-15 01:19:50 -08:00
(lib.withFeatureAs (openssl != null) "ssl" "openssl")
2021-03-12 08:05:33 -08:00
] ++ lib.optionals stdenv.isDarwin [
# https://lists.gnu.org/archive/html/bug-wget/2021-01/msg00076.html
"--without-included-regex"
];
doCheck = false;
meta = with 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 = "https://www.gnu.org/software/wget/";
maintainers = with maintainers; [ fpletz ];
platforms = platforms.all;
};
}