nixpkgs/pkgs/development/ocaml-modules/higlo/default.nix

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

26 lines
586 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchFromGitLab, sedlex_2, xtmpl }:
2017-03-23 07:58:25 +00:00
buildDunePackage rec {
pname = "higlo";
version = "0.8";
useDune2 = true;
src = fetchFromGitLab {
domain = "framagit.org";
2017-03-23 07:58:25 +00:00
owner = "zoggy";
repo = "higlo";
rev = version;
sha256 = "sha256:09hsbwy5asacgh4gdj0vjpy4kzfnq3qji9szbsbyswsf1nbyczir";
2017-03-23 07:58:25 +00:00
};
propagatedBuildInputs = [ sedlex_2 xtmpl ];
2017-03-23 07:58:25 +00:00
meta = with lib; {
2017-03-23 07:58:25 +00:00
description = "OCaml library for syntax highlighting";
inherit (src.meta) homepage;
2017-03-23 07:58:25 +00:00
license = licenses.lgpl3;
maintainers = with maintainers; [ regnat ];
};
}