add missing ppxlib dependency
This commit is contained in:
parent
48f761d210
commit
0eb9e97ac6
|
@ -17,4 +17,5 @@
|
||||||
(source
|
(source
|
||||||
(uri "https://git.lain.faith/haskal/xlog.git"))
|
(uri "https://git.lain.faith/haskal/xlog.git"))
|
||||||
(depends ocaml dune
|
(depends ocaml dune
|
||||||
(ptime (>= 1.1))))
|
(ptime (>= 1.1))
|
||||||
|
(ppxlib (>= 0.32))))
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
buildDunePackage,
|
buildDunePackage,
|
||||||
ptime,
|
ptime,
|
||||||
|
ppxlib,
|
||||||
|
|
||||||
ocaml,
|
ocaml,
|
||||||
dune_3,
|
dune_3,
|
||||||
|
@ -28,7 +29,7 @@ in buildDunePackage rec {
|
||||||
minimalOCamlVersion = "5.1";
|
minimalOCamlVersion = "5.1";
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
||||||
propagatedBuildInputs = [ ptime ];
|
propagatedBuildInputs = [ ptime ppxlib ];
|
||||||
|
|
||||||
nativeBuildInputs = lib.optionals enableShell [
|
nativeBuildInputs = lib.optionals enableShell [
|
||||||
ocaml dune_3 odoc utop
|
ocaml dune_3 odoc utop
|
||||||
|
|
Loading…
Reference in New Issue