nixpkgs/pkgs/tools/backup/httrack/default.nix
Bjørn Forsman 083d0890f5 More description fixes
* Remove package name
* Start with upper case letter
* Remove trailing period

Also reword some descriptions and move some long descriptions to
longDescription.

I'm not touching generated packages.
2013-10-06 12:01:38 +02:00

20 lines
450 B
Nix

{ stdenv, fetchurl, zlib, openssl }:
stdenv.mkDerivation rec {
version = "3.47.21";
name = "httrack-${version}";
src = fetchurl {
url = "http://mirror.httrack.com/httrack-${version}.tar.gz";
sha256 = "1jqw0zx74jpi0svivvqhja3ixcrfkh9sbi9fwfw83jga27bc1sp0";
};
buildInputs = [ zlib openssl ];
meta = {
homepage = "http://www.httrack.com";
description = "Easy-to-use offline browser utility";
license = "GPL";
};
}