083d0890f5
* 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.
20 lines
450 B
Nix
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";
|
|
};
|
|
}
|