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
1 changed files with 10 additions and 8 deletions

View File

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