nixpkgs/pkgs/development/ocaml-modules/cstruct/ppx.nix
sternenseemann 824d041cf5 ocamlPackages.ppx_cstruct: propagate dependencies
Without propagation some builds of packages requiring ppx_cstruct would
fail.
2020-04-16 19:57:35 +02:00

15 lines
319 B
Nix

{ lib, buildDunePackage, cstruct, sexplib, ppx_tools_versioned }:
if !lib.versionAtLeast (cstruct.version or "1") "3"
then cstruct
else
buildDunePackage {
pname = "ppx_cstruct";
inherit (cstruct) version src meta;
minimumOCamlVersion = "4.03";
propagatedBuildInputs = [ cstruct ppx_tools_versioned sexplib ];
}