mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 05:04:40 +00:00
43 lines
785 B
Nix
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;
|
|
};
|
|
})
|