3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #10679 from henrytill/httrack

httrack: fix on darwin
This commit is contained in:
John Wiegley 2015-10-28 15:30:16 -07:00
commit e54c0ddcb0

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, zlib, openssl }:
{ stdenv, fetchurl, zlib, openssl, libiconv }:
stdenv.mkDerivation rec {
version = "3.48.21";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "10p4gf8y9h7mxkqlbs3hqgvmvbgvcbax8jp1whbw4yidwahn06w7";
};
buildInputs = [ zlib openssl ];
buildInputs = [ zlib openssl libiconv ];
meta = {
homepage = "http://www.httrack.com";