python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / litehtml / default.nix
blob6e3db75f5ebbba9efe6a8ea46bb5739f80a00dea
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , gumbo
6 }:
8 stdenv.mkDerivation rec {
9   pname = "litehtml";
10   version = "0.6";
12   src = fetchFromGitHub {
13     owner = "litehtml";
14     repo = "litehtml";
15     rev = "v${version}";
16     hash = "sha256-9571d3k8RkzEpMWPuIejZ7njLmYstSwFUaSqT3sk6uQ=";
17   };
19   nativeBuildInputs = [
20     cmake
21   ];
23   buildInputs = [
24     gumbo
25   ];
27   cmakeFlags = [
28     "-DEXTERNAL_GUMBO=ON"
29   ];
31   meta = with lib; {
32     description = "Fast and lightweight HTML/CSS rendering engine";
33     homepage = "http://www.litehtml.com/";
34     license = licenses.bsd3;
35     platforms = platforms.all;
36     maintainers = with maintainers; [ fgaz ];
37   };