ocamlPackages.cstruct: 4.0.0 → 5.0.0

This commit is contained in:
Vincent Laporte
2020-11-26 06:55:12 +01:00
committed by Vincent Laporte
parent 4d47330bef
commit 4a1ff5b3ce
5 changed files with 15 additions and 9 deletions
@@ -1,4 +1,4 @@
{ lib, buildDunePackage, cstruct, sexplib, ppx_tools_versioned }:
{ lib, buildDunePackage, cstruct, sexplib, ppx_tools_versioned, ppxlib }:
if !lib.versionAtLeast (cstruct.version or "1") "3"
then cstruct
@@ -6,9 +6,9 @@ else
buildDunePackage {
pname = "ppx_cstruct";
inherit (cstruct) version src meta;
inherit (cstruct) version src useDune2 meta;
minimumOCamlVersion = "4.03";
propagatedBuildInputs = [ cstruct ppx_tools_versioned sexplib ];
propagatedBuildInputs = [ cstruct ppx_tools_versioned ppxlib sexplib ];
}