nixpkgs/pkgs/by-name/wg/wget2/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

108 lines
2.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitLab
# build support
, autoreconfHook
, flex
, gnulib
, pkg-config
, texinfo
# libraries
, brotli
, bzip2
, darwin
, gpgme
, libhsts
, libidn2
, libpsl
, lzip
, nghttp2
, openssl
, pcre2
, sslSupport ? true
, xz
, zlib
, zstd
}:
stdenv.mkDerivation rec {
pname = "wget2";
version = "2.1.0";
outputs = [ "out" "lib" "dev" ];
src = fetchFromGitLab {
owner = "gnuwget";
repo = pname;
rev = "v${version}";
hash = "sha256-+xw1nQMBs0m9RlunyrAYaSDPnLY1yRX8zt8hKOMXQT8=";
};
# wget2_noinstall contains forbidden reference to /build/
postPatch = ''
substituteInPlace src/Makefile.am \
--replace "bin_PROGRAMS = wget2 wget2_noinstall" "bin_PROGRAMS = wget2"
'';
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
flex
lzip
pkg-config
texinfo
];
buildInputs = [
brotli
bzip2
gpgme
libhsts
libidn2
libpsl
nghttp2
pcre2
xz
zlib
zstd
] ++ lib.optionals sslSupport [
openssl
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
];
# TODO: include translation files
autoreconfPhase = ''
# copy gnulib into build dir and make writable.
# Otherwise ./bootstrap copies the non-writable files from nix store and fails to modify them
rmdir gnulib
cp -r ${gnulib} gnulib
chmod -R u+w gnulib/{build-aux,lib}
./bootstrap --no-git --gnulib-srcdir=gnulib --skip-po
'';
configureFlags = [
(lib.enableFeature false "shared")
# TODO: https://gitlab.com/gnuwget/wget2/-/issues/537
(lib.withFeatureAs sslSupport "ssl" "openssl")
];
meta = with lib; {
description = "Successor of GNU Wget, a file and recursive website downloader";
longDescription = ''
Designed and written from scratch it wraps around libwget, that provides the basic
functions needed by a web client.
Wget2 works multi-threaded and uses many features to allow fast operation.
In many cases Wget2 downloads much faster than Wget1.x due to HTTP2, HTTP compression,
parallel connections and use of If-Modified-Since HTTP header.
'';
homepage = "https://gitlab.com/gnuwget/wget2";
# wget2 GPLv3+; libwget LGPLv3+
license = with licenses; [ gpl3Plus lgpl3Plus ];
maintainers = with maintainers; [ SuperSandro2000 ];
mainProgram = "wget2";
};
}