1{
2 lib,
3 buildDunePackage,
4 fetchFromGitLab,
5 sedlex,
6 xtmpl,
7}:
8
9buildDunePackage rec {
10 pname = "higlo";
11 version = "0.10.0";
12
13 src = fetchFromGitLab {
14 domain = "framagit.org";
15 owner = "zoggy";
16 repo = "higlo";
17 rev = version;
18 hash = "sha256-A5Su4+eBOq/WNdY/3EBQ3KqrRQuaCI1x25cEuoZp4Mo=";
19 };
20
21 propagatedBuildInputs = [
22 sedlex
23 xtmpl
24 ];
25
26 meta = with lib; {
27 description = "OCaml library for syntax highlighting";
28 inherit (src.meta) homepage;
29 license = licenses.lgpl3;
30 maintainers = with maintainers; [ regnat ];
31 };
32}