ocamlPackages.ppx_cstruct: minor cleaning

This commit is contained in:
Vincent Laporte 2023-08-22 06:59:09 +02:00
parent 63e9b2f8c0
commit 6b5f1432ad
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,4 +1,5 @@
{ lib, buildDunePackage, cstruct, sexplib, ppxlib, stdlib-shims
{ lib, buildDunePackage, cstruct, sexplib, ppxlib
, ocaml-migrate-parsetree-2
, ounit, cppo, ppx_sexp_conv, cstruct-unix, cstruct-sexp
}:
@ -11,11 +12,10 @@ else
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [ cstruct ppxlib sexplib stdlib-shims ];
propagatedBuildInputs = [ cstruct ppxlib sexplib ];
doCheck = true;
nativeCheckInputs = [ cppo ];
checkInputs = [ ounit ppx_sexp_conv cstruct-sexp cstruct-unix ];
checkInputs = [ ounit ppx_sexp_conv cstruct-sexp cstruct-unix ocaml-migrate-parsetree-2 ];
}