1{
2 lib,
3 stdenv,
4 fetchurl,
5 zlib,
6 openssl,
7 libiconv,
8}:
9
10stdenv.mkDerivation rec {
11 version = "3.49.2";
12 pname = "httrack";
13
14 src = fetchurl {
15 url = "https://mirror.httrack.com/httrack-${version}.tar.gz";
16 sha256 = "09a0gm67nml86qby1k1gh7rdxamnrnzwr6l9r5iiq94favjs0xrl";
17 };
18
19 buildInputs = [
20 libiconv
21 openssl
22 zlib
23 ];
24
25 enableParallelBuilding = true;
26
27 meta = with lib; {
28 description = "Easy-to-use offline browser / website mirroring utility";
29 homepage = "http://www.httrack.com";
30 license = licenses.gpl3;
31 platforms = with platforms; unix;
32 };
33}