summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/xtmpl/ppx.nix
blob: b6f5bd65000fdfaade9564e145abcb722173c3a1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                          
{ buildDunePackage, xtmpl, ppxlib }:

buildDunePackage {
  pname = "xtmpl_ppx";
  minimalOCamlVersion = "4.11";

  inherit (xtmpl) src version useDune2;

  buildInputs = [ ppxlib xtmpl ];

  meta = xtmpl.meta // {
    description = "Xml templating library, ppx extension";
  };
}