aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/cstruct/ppx.nix
blob: feb8feac6b68fd02d831a0ea4fd964c4a9aee989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, buildDunePackage, cstruct, sexplib, ppx_tools_versioned, ppxlib }:

if !lib.versionAtLeast (cstruct.version or "1") "3"
then cstruct
else

buildDunePackage {
	pname = "ppx_cstruct";
	inherit (cstruct) version src useDune2 meta;

	minimumOCamlVersion = "4.03";

	propagatedBuildInputs = [ cstruct ppx_tools_versioned ppxlib sexplib ];
}