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

65 lines
1.9 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, gettext, pkg-config, perlPackages
2018-03-14 19:15:06 +00:00
, libidn2, zlib, pcre, libuuid, libiconv, libintl
, python3, lzip
, libpsl ? null
, openssl ? null }:
stdenv.mkDerivation rec {
pname = "wget";
2021-03-10 05:26:10 +00:00
version = "1.21.1";
src = fetchurl {
url = "mirror://gnu/wget/${pname}-${version}.tar.lz";
2021-03-10 05:26:10 +00:00
sha256 = "sha256-25u+U0fm+qBvx4gF7rgIsmiXlFXq2QA6YIVpydT8kK0=";
};
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
2021-01-15 09:19:50 +00:00
'' + lib.optionalString doCheck ''
2015-06-23 00:00:57 +00: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-17 03:51:22 +00:00
nativeBuildInputs = [ gettext pkg-config perlPackages.perl lzip libiconv libintl ];
2018-03-14 19:15:06 +00:00
buildInputs = [ libidn2 zlib pcre libuuid ]
2021-01-15 09:19:50 +00: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 09:19:50 +00:00
(lib.withFeatureAs (openssl != null) "ssl" "openssl")
2021-03-12 16:05:33 +00: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;
};
}