Files
nixpkgs/pkgs/by-name/ht/httrack/package.nix
2026-08-17 03:51:32 +00:00

43 lines
785 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
zlib,
openssl,
libiconv,
autoreconfHook,
autoconf-archive,
}:
stdenv.mkDerivation (finalAttrs: {
version = "3.49.22";
pname = "httrack";
src = fetchFromGitHub {
owner = "xroche";
repo = "httrack";
tag = finalAttrs.version;
hash = "sha256-e7OvdvHphTP8vnZZkCVhonLkK/yNsaMToA2jnzNPZHE=";
fetchSubmodules = true;
};
nativeBuildInputs = [
autoreconfHook
autoconf-archive
];
buildInputs = [
libiconv
openssl
zlib
];
meta = {
description = "Easy-to-use offline browser / website mirroring utility";
homepage = "https://www.httrack.com";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ tbutter ];
platforms = with lib.platforms; unix;
};
})