summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-08-22 06:59:09 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-08-22 06:59:09 +0200
commit6b5f1432ad9171ae72f589155b7023e4b0ca52bb (patch)
tree4897b106e9d0e67243a525a3201850d940e2777d
parent63e9b2f8c0d160257a0b6b8d39b849528e13545d (diff)
ocamlPackages.ppx_cstruct: minor cleaning
-rw-r--r--pkgs/development/ocaml-modules/cstruct/ppx.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/cstruct/ppx.nix b/pkgs/development/ocaml-modules/cstruct/ppx.nix
index f2b19355b099..96814ebdc72a 100644
--- a/pkgs/development/ocaml-modules/cstruct/ppx.nix
+++ b/pkgs/development/ocaml-modules/cstruct/ppx.nix
@@ -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 ];
}