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