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