tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
htmlcxx: fix darwin build
Ben Siraphob
5 years ago
d97968e2
f0f899ce
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
htmlcxx
default.nix
+3
-2
pkgs/development/libraries/htmlcxx/default.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchurl }:
1
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
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
18
-
platforms = platforms.linux;
19
19
+
platforms = platforms.all;
19
20
};
20
21
}