htmlcxx: fix darwin build
This commit is contained in:
parent
f0f899ce10
commit
d97968e29f
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl }:
|
{ lib, stdenv, fetchurl, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "htmlcxx";
|
pname = "htmlcxx";
|
||||||
|
@ -9,12 +9,13 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1hgmyiad3qgbpf2dvv2jygzj6jpz4dl3n8ds4nql68a4l9g2nm07";
|
sha256 = "1hgmyiad3qgbpf2dvv2jygzj6jpz4dl3n8ds4nql68a4l9g2nm07";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libiconv ];
|
||||||
patches = [ ./ptrdiff.patch ];
|
patches = [ ./ptrdiff.patch ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://htmlcxx.sourceforge.net/";
|
homepage = "http://htmlcxx.sourceforge.net/";
|
||||||
description = "A simple non-validating css1 and html parser for C++";
|
description = "A simple non-validating css1 and html parser for C++";
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue