mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
280 B
Nix
15 lines
280 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|