python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / higlo / default.nix
blob87a4186a68c314618ec848e31766f1da576c7517
1 { lib, buildDunePackage, fetchFromGitLab, sedlex, xtmpl }:
3 buildDunePackage rec {
4   pname = "higlo";
5   version = "0.8";
6   useDune2 = true;
7   src = fetchFromGitLab {
8     domain = "framagit.org";
9     owner = "zoggy";
10     repo = "higlo";
11     rev = version;
12     sha256 = "sha256:09hsbwy5asacgh4gdj0vjpy4kzfnq3qji9szbsbyswsf1nbyczir";
13   };
15   propagatedBuildInputs = [ sedlex xtmpl ];
17   meta = with lib; {
18     description = "OCaml library for syntax highlighting";
19     inherit (src.meta) homepage;
20     license = licenses.lgpl3;
21     maintainers = with maintainers; [ regnat ];
22   };