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

22 lines
636 B
Nix
Raw Normal View History

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