nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 32 lines 720 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6}: 7 8stdenv.mkDerivation (finalAttrs: { 9 pname = "lexbor"; 10 version = "2.6.0-unstable-2025-11-24"; 11 12 src = fetchFromGitHub { 13 owner = "lexbor"; 14 repo = "lexbor"; 15 rev = "7d726f1bed2f489e79751496c584304e6859ee1b"; 16 hash = "sha256-vLP/YJWu1Z2kiT0sFLcMPjzMJHJe457oyPTIsxafTfc="; 17 }; 18 19 nativeBuildInputs = [ 20 cmake 21 ]; 22 23 meta = { 24 description = "Open source HTML Renderer library"; 25 homepage = "https://github.com/lexbor/lexbor"; 26 changelog = "https://github.com/lexbor/lexbor/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 27 license = lib.licenses.asl20; 28 maintainers = [ ]; 29 mainProgram = "lexbor"; 30 platforms = lib.platforms.all; 31 }; 32})