mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
39 lines
659 B
Nix
39 lines
659 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, gumbo
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "litehtml";
|
||
|
version = "0.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "litehtml";
|
||
|
repo = "litehtml";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-9571d3k8RkzEpMWPuIejZ7njLmYstSwFUaSqT3sk6uQ=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
gumbo
|
||
|
];
|
||
|
|
||
|
cmakeFlags = [
|
||
|
"-DEXTERNAL_GUMBO=ON"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Fast and lightweight HTML/CSS rendering engine";
|
||
|
homepage = "http://www.litehtml.com/";
|
||
|
license = licenses.bsd3;
|
||
|
platforms = platforms.all;
|
||
|
maintainers = with maintainers; [ fgaz ];
|
||
|
};
|
||
|
}
|