2020-05-13 21:04:09 +01:00
|
|
|
{ lib, buildDunePackage, fetchFromGitHub
|
2021-01-31 13:15:46 +00:00
|
|
|
, menhir, ppxlib, ppx_deriving, re, uutf, uucp, ounit2 }:
|
2015-05-15 16:55:37 +01:00
|
|
|
|
2020-05-13 21:04:09 +01:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "jingoo";
|
2021-01-01 16:53:22 +00:00
|
|
|
version = "1.4.2";
|
|
|
|
|
|
|
|
useDune2 = true;
|
2015-05-15 16:55:37 +01:00
|
|
|
|
2020-05-13 21:04:09 +01:00
|
|
|
minimumOCamlVersion = "4.04";
|
2018-07-29 20:18:09 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tategakibunko";
|
|
|
|
repo = "jingoo";
|
|
|
|
rev = "v${version}";
|
2021-01-01 16:53:22 +00:00
|
|
|
sha256 = "0q947aik4i4z5wjllhwlkxh60qczwgra21yyrrzwhi9y5bnf8346";
|
2015-05-15 16:55:37 +01:00
|
|
|
};
|
|
|
|
|
2020-05-13 21:04:09 +01:00
|
|
|
buildInputs = [ menhir ];
|
2021-01-31 13:15:46 +00:00
|
|
|
propagatedBuildInputs = [ ppxlib ppx_deriving re uutf uucp ];
|
2020-05-13 21:04:09 +01:00
|
|
|
checkInputs = [ ounit2 ];
|
|
|
|
doCheck = true;
|
2015-05-15 16:55:37 +01:00
|
|
|
|
|
|
|
|
2020-05-13 21:04:09 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/tategakibunko/jingoo";
|
2015-05-15 16:55:37 +01:00
|
|
|
description = "OCaml template engine almost compatible with jinja2";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|