linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / htmlcxx / default.nix
blobd9072e46e4070be1285eab598dab419a30eee822
1 { lib, stdenv, fetchurl, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "htmlcxx";
5   version = "0.86";
7   src = fetchurl {
8     url = "mirror://sourceforge/htmlcxx/htmlcxx/${version}/${pname}-${version}.tar.gz";
9     sha256 = "1hgmyiad3qgbpf2dvv2jygzj6jpz4dl3n8ds4nql68a4l9g2nm07";
10   };
12   buildInputs = [ libiconv ];
13   patches = [ ./ptrdiff.patch ];
15   meta = with lib; {
16     homepage = "http://htmlcxx.sourceforge.net/";
17     description = "A simple non-validating css1 and html parser for C++";
18     license = licenses.lgpl2;
19     platforms = platforms.all;
20   };