2013-07-25 08:21:22 +00:00
|
|
|
{ stdenv, fetchurl, zlib, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-03-28 09:30:06 +00:00
|
|
|
version = "3.48.21";
|
2013-07-25 08:21:22 +00:00
|
|
|
name = "httrack-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://mirror.httrack.com/httrack-${version}.tar.gz";
|
2015-03-28 09:30:06 +00:00
|
|
|
sha256 = "10p4gf8y9h7mxkqlbs3hqgvmvbgvcbax8jp1whbw4yidwahn06w7";
|
2013-07-25 08:21:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zlib openssl ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.httrack.com";
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Easy-to-use offline browser utility";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2014-09-04 14:33:50 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2013-07-25 08:21:22 +00:00
|
|
|
};
|
|
|
|
}
|