1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/ocaml-modules/cstruct/ppx.nix

16 lines
323 B
Nix

{ lib, buildDunePackage, cstruct, 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.02";
buildInputs = [ ppx_tools_versioned ];
propagatedBuildInputs = [ cstruct ];
}