add missing ppxlib dependency

This commit is contained in:
xenia 2024-04-23 13:58:01 -04:00
parent 48f761d210
commit 0eb9e97ac6
3 changed files with 5 additions and 2 deletions

View File

@ -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))))

View File

@ -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

View File

@ -14,6 +14,7 @@ depends: [
"ocaml" "ocaml"
"dune" {>= "3.15"} "dune" {>= "3.15"}
"ptime" {>= "1.1"} "ptime" {>= "1.1"}
"ppxlib" {>= "0.32"}
"odoc" {with-doc} "odoc" {with-doc}
] ]
build: [ build: [