{ lib , buildDunePackage , fetchurl , xmlm , eio , logs , fmt , cstruct , cmdliner , alcotest , eio_main }: buildDunePackage rec { pname = "wayland"; version = "2.0"; minimalOCamlVersion = "5.0"; src = fetchurl { url = "https://github.com/talex5/ocaml-wayland/releases/download/v${version}/wayland-${version}.tbz"; hash = "sha256-iCG1zk1tA7gdGGt78c3sQi0NN9Fh3HsCP4cy7Y3pg0s="; }; propagatedBuildInputs = [ eio logs fmt cstruct ]; buildInputs = [ cmdliner xmlm ]; checkInputs = [ alcotest eio_main ]; doCheck = true; meta = { description = "Pure OCaml Wayland protocol library"; homepage = "https://github.com/talex5/ocaml-wayland"; license = lib.licenses.asl20; maintainers = [ lib.maintainers.sternenseemann ]; mainProgram = "wayland-scanner-ocaml"; }; }