Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
576 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchFromGitLab,
sedlex,
xtmpl,
}:
buildDunePackage rec {
pname = "higlo";
version = "0.10.0";
src = fetchFromGitLab {
domain = "framagit.org";
owner = "zoggy";
repo = "higlo";
rev = version;
hash = "sha256-A5Su4+eBOq/WNdY/3EBQ3KqrRQuaCI1x25cEuoZp4Mo=";
};
propagatedBuildInputs = [
sedlex
xtmpl
];
meta = with lib; {
description = "OCaml library for syntax highlighting";
inherit (src.meta) homepage;
license = licenses.lgpl3;
maintainers = with maintainers; [ regnat ];
};
}