Files
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.

21 lines
256 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
xtmpl,
ppxlib,
}:
buildDunePackage {
pname = "xtmpl_ppx";
inherit (xtmpl) src version;
buildInputs = [
ppxlib
xtmpl
];
meta = xtmpl.meta // {
description = "Xml templating library, ppx extension";
};
}