1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 02:46:28 +00:00
nixpkgs/pkgs/tools/backup/httrack/default.nix

21 lines
589 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 {
version = "3.48.21";
2013-07-25 09:21:22 +01:00
name = "httrack-${version}";
src = fetchurl {
url = "http://mirror.httrack.com/httrack-${version}.tar.gz";
sha256 = "10p4gf8y9h7mxkqlbs3hqgvmvbgvcbax8jp1whbw4yidwahn06w7";
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 ];
2013-07-25 09:21:22 +01:00
};
}