nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildDunePackage, fetchFromGitLab, sedlex, xtmpl }:
2
3buildDunePackage rec {
4 pname = "higlo";
5 version = "0.8";
6 duneVersion = "3";
7 src = fetchFromGitLab {
8 domain = "framagit.org";
9 owner = "zoggy";
10 repo = "higlo";
11 rev = version;
12 sha256 = "sha256:09hsbwy5asacgh4gdj0vjpy4kzfnq3qji9szbsbyswsf1nbyczir";
13 };
14
15 propagatedBuildInputs = [ sedlex xtmpl ];
16
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 };
23}
24
25