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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
615 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib, openssl, libiconv }:
2013-07-25 10:21:22 +02:00
stdenv.mkDerivation rec {
2017-08-30 08:26:28 +02:00
version = "3.49.2";
pname = "httrack";
2013-07-25 10:21:22 +02:00
src = fetchurl {
url = "https://mirror.httrack.com/httrack-${version}.tar.gz";
2017-08-30 08:26:28 +02:00
sha256 = "09a0gm67nml86qby1k1gh7rdxamnrnzwr6l9r5iiq94favjs0xrl";
2013-07-25 10:21:22 +02:00
};
2021-01-15 10:19:50 +01:00
buildInputs = [ zlib openssl ] ++ lib.optional stdenv.isDarwin libiconv;
2013-07-25 10:21:22 +02:00
2017-08-30 08:26:28 +02:00
enableParallelBuilding = true;
meta = with lib; {
2017-08-30 08:26:28 +02:00
description = "Easy-to-use offline browser / website mirroring utility";
homepage = "http://www.httrack.com";
2017-08-30 08:26:28 +02:00
license = licenses.gpl3;
platforms = with platforms; unix;
2013-07-25 10:21:22 +02:00
};
}