python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / htmlcxx / default.nix
blob221ec7622ff4abab75c41812b0767b54c86c6c34
1 { lib, stdenv, fetchurl, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "htmlcxx";
5   version = "0.87";
7   src = fetchurl {
8     url = "mirror://sourceforge/htmlcxx/v${version}/${pname}-${version}.tar.gz";
9     sha256 = "sha256-XTj5OM9N+aKYpTRq8nGV//q/759GD8KgIjPLz6j8dcg=";
10   };
12   buildInputs = [ libiconv ];
13   patches = [
14     ./ptrdiff.patch
15     ./c++17.patch
16   ];
18   meta = with lib; {
19     homepage = "http://htmlcxx.sourceforge.net/";
20     description = "A simple non-validating css1 and html parser for C++";
21     license = licenses.lgpl2;
22     platforms = platforms.all;
23   };