2015-09-30 08:33:54 +01:00
|
|
|
{ stdenv, fetchurl, zlib, openssl, libiconv }:
|
2013-07-25 09:21:22 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-08-30 07:26:28 +01:00
|
|
|
version = "3.49.2";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "httrack";
|
2013-07-25 09:21:22 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://mirror.httrack.com/httrack-${version}.tar.gz";
|
2017-08-30 07:26:28 +01:00
|
|
|
sha256 = "09a0gm67nml86qby1k1gh7rdxamnrnzwr6l9r5iiq94favjs0xrl";
|
2013-07-25 09:21:22 +01:00
|
|
|
};
|
|
|
|
|
2015-09-30 08:33:54 +01:00
|
|
|
buildInputs = [ zlib openssl ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
2013-07-25 09:21:22 +01:00
|
|
|
|
2017-08-30 07:26:28 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Easy-to-use offline browser / website mirroring utility";
|
|
|
|
homepage = http://www.httrack.com;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
|
|
|
platforms = with platforms; unix;
|
2013-07-25 09:21:22 +01:00
|
|
|
};
|
|
|
|
}
|