nixpkgs-suyu/pkgs/tools/backup/httrack/default.nix

22 lines
638 B
Nix
Raw Normal View History

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";
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;
2013-07-25 10:21:22 +02:00
};
}