ocamlPackages.xtmpl: use Dune 3

This commit is contained in:
Vincent Laporte 2023-03-21 13:05:46 +01:00
parent afd961fa80
commit 4263071ee0
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
buildDunePackage rec {
pname = "xtmpl";
version = "0.19.0";
useDune2 = true;
duneVersion = "3";
src = fetchFromGitLab {
domain = "framagit.org";
owner = "zoggy";

View File

@ -3,8 +3,9 @@
buildDunePackage {
pname = "xtmpl_ppx";
minimalOCamlVersion = "4.11";
duneVersion = "3";
inherit (xtmpl) src version useDune2;
inherit (xtmpl) src version;
buildInputs = [ ppxlib xtmpl ];