2015-09-30 08:33:54 +01:00
|
|
|
{ stdenv, fetchurl, zlib, openssl, libiconv }:
|
2013-07-25 09:21:22 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-30 21:08:09 +01:00
|
|
|
version = "3.48.22";
|
2013-07-25 09:21:22 +01:00
|
|
|
name = "httrack-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://mirror.httrack.com/httrack-${version}.tar.gz";
|
2016-05-30 21:08:09 +01:00
|
|
|
sha256 = "13y4m4rhvmgbbpc3lig9hzmzi86a5fkyi79sz1ckk4wfnkbim0xj";
|
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
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.httrack.com;
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Easy-to-use offline browser utility";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2014-09-04 15:33:50 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2013-07-25 09:21:22 +01:00
|
|
|
};
|
|
|
|
}
|