mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
62 lines
1.7 KiB
Nix
62 lines
1.7 KiB
Nix
{ stdenv, fetchurl, gettext, pkgconfig, perl
|
|
, libidn2, zlib, pcre, libuuid, libiconv, libintl
|
|
, IOSocketSSL, LWP, python3, lzip
|
|
, libpsl ? null
|
|
, openssl ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wget-${version}";
|
|
version = "1.20";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/wget/${name}.tar.lz";
|
|
sha256 = "07k8yd8rdn27x5fbzlnsz4db7z7qnisiqhs7r1b5wzy2b9b0zf5h";
|
|
};
|
|
|
|
patches = [
|
|
./remove-runtime-dep-on-openssl-headers.patch
|
|
];
|
|
|
|
preConfigure = ''
|
|
patchShebangs doc
|
|
|
|
'' + 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
|
|
'';
|
|
|
|
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
|
|
++ stdenv.lib.optional stdenv.isDarwin perl;
|
|
|
|
configureFlags = [
|
|
(stdenv.lib.withFeatureAs (openssl != null) "ssl" "openssl")
|
|
];
|
|
|
|
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 = https://www.gnu.org/software/wget/;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|