lol

htmlcxx: fix darwin build

+3 -2
+3 -2
pkgs/development/libraries/htmlcxx/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl, libiconv }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "htmlcxx"; ··· 9 9 sha256 = "1hgmyiad3qgbpf2dvv2jygzj6jpz4dl3n8ds4nql68a4l9g2nm07"; 10 10 }; 11 11 12 + buildInputs = [ libiconv ]; 12 13 patches = [ ./ptrdiff.patch ]; 13 14 14 15 meta = with lib; { 15 16 homepage = "http://htmlcxx.sourceforge.net/"; 16 17 description = "A simple non-validating css1 and html parser for C++"; 17 18 license = licenses.lgpl2; 18 - platforms = platforms.linux; 19 + platforms = platforms.all; 19 20 }; 20 21 }