httrack: 3.48.22 -> 3.49.2

This commit is contained in:
Peter Hoeg 2017-08-30 14:26:28 +08:00
parent a9be3c20d1
commit b50309a5b5

View file

@ -1,21 +1,23 @@
{ stdenv, fetchurl, zlib, openssl, libiconv }:
stdenv.mkDerivation rec {
version = "3.48.22";
version = "3.49.2";
name = "httrack-${version}";
src = fetchurl {
url = "http://mirror.httrack.com/httrack-${version}.tar.gz";
sha256 = "13y4m4rhvmgbbpc3lig9hzmzi86a5fkyi79sz1ckk4wfnkbim0xj";
sha256 = "09a0gm67nml86qby1k1gh7rdxamnrnzwr6l9r5iiq94favjs0xrl";
};
buildInputs = [ zlib openssl ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
meta = {
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Easy-to-use offline browser / website mirroring utility";
homepage = http://www.httrack.com;
description = "Easy-to-use offline browser utility";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
platforms = with stdenv.lib.platforms; unix;
license = licenses.gpl3;
maintainers = with maintainers; [ the-kenny ];
platforms = with platforms; unix;
};
}