at 15.09-beta 20 lines 531 B view raw
1{ stdenv, fetchurl, zlib, openssl }: 2 3stdenv.mkDerivation rec { 4 version = "3.48.21"; 5 name = "httrack-${version}"; 6 7 src = fetchurl { 8 url = "http://mirror.httrack.com/httrack-${version}.tar.gz"; 9 sha256 = "10p4gf8y9h7mxkqlbs3hqgvmvbgvcbax8jp1whbw4yidwahn06w7"; 10 }; 11 12 buildInputs = [ zlib openssl ]; 13 14 meta = { 15 homepage = "http://www.httrack.com"; 16 description = "Easy-to-use offline browser utility"; 17 license = stdenv.lib.licenses.gpl3; 18 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 19 }; 20}