8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 hash = "sha256-9571d3k8RkzEpMWPuIejZ7njLmYstSwFUaSqT3sk6uQ=";
19 # Don't search for non-existant gumbo cmake config
20 # This will mislead cmake that litehtml is not found
21 # Affects build of pkgs that depend on litehtml
23 substituteInPlace cmake/litehtmlConfig.cmake \
24 --replace "find_dependency(gumbo)" ""
40 description = "Fast and lightweight HTML/CSS rendering engine";
41 homepage = "http://www.litehtml.com/";
42 license = licenses.bsd3;
43 platforms = platforms.all;
44 maintainers = with maintainers; [ fgaz ];