nixpkgs/pkgs/development/ocaml-modules/xtmpl/ppx.nix

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

15 lines
280 B
Nix
Raw Normal View History

{ 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";
};
}