summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/higlo/default.nix
blob: fba8e35fb5be6fd28fb5d7796a04fe45e2e85c9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildDunePackage, fetchFromGitLab, sedlex, xtmpl }:

buildDunePackage rec {
  pname = "higlo";
  version = "0.9";

  src = fetchFromGitLab {
    domain = "framagit.org";
    owner = "zoggy";
    repo = "higlo";
    rev = version;
    hash = "sha256-SaFFzp4FCjVLdMLH6mNIv3HzJbkXJ5Ojbku258LCfLI=";
  };

  propagatedBuildInputs = [ sedlex xtmpl ];

  meta = with lib; {
    description = "OCaml library for syntax highlighting";
    inherit (src.meta) homepage;
    license = licenses.lgpl3;
    maintainers = with maintainers; [ regnat ];
  };
}