mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
httrack: 3.48.22 -> 3.49.2
This commit is contained in:
parent
a9be3c20d1
commit
b50309a5b5
1 changed files with 10 additions and 8 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue