about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/higlo/default.nix
blob: 19b2fa8942a55254abefee39abded19bcbe7b8f7 (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_2, xtmpl }:

buildDunePackage rec {
  pname = "higlo";
  version = "0.8";
  useDune2 = true;
  src = fetchFromGitLab {
    domain = "framagit.org";
    owner = "zoggy";
    repo = "higlo";
    rev = version;
    sha256 = "sha256:09hsbwy5asacgh4gdj0vjpy4kzfnq3qji9szbsbyswsf1nbyczir";
  };

  propagatedBuildInputs = [ sedlex_2 xtmpl ];

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