d50c9666ca
ocamlPackages.higlo: 0.6 → 0.8 ocamlPackages.iri: 0.4.0 → 0.6.0 ocamlPackages.ocf: 0.5.0 → 0.8.0 ocamlPackages.ocf_ppx: init at 0.8.0 ocamlPackages.xtmpl: 0.17.0 → 0.19.0 ocamlPackages.xtmpl_ppx: init at 0.19.0
26 lines
586 B
Nix
26 lines
586 B
Nix
{ 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 ];
|
|
};
|
|
}
|
|
|
|
|