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

21 lines
589 B
Nix
Raw Normal View History

2015-09-30 07:33:54 +00:00
{ stdenv, fetchurl, zlib, openssl, libiconv }:
2013-07-25 08:21:22 +00:00
stdenv.mkDerivation rec {
2016-05-30 20:08:09 +00:00
version = "3.48.22";
2013-07-25 08:21:22 +00:00
name = "httrack-${version}";
src = fetchurl {
url = "http://mirror.httrack.com/httrack-${version}.tar.gz";
2016-05-30 20:08:09 +00:00
sha256 = "13y4m4rhvmgbbpc3lig9hzmzi86a5fkyi79sz1ckk4wfnkbim0xj";
2013-07-25 08:21:22 +00:00
};
2015-09-30 07:33:54 +00:00
buildInputs = [ zlib openssl ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
2013-07-25 08:21:22 +00: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 ];
2013-07-25 08:21:22 +00:00
};
}