summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cstruct/ppx.nix
blob: 837bca370cf3626a48e167ec9ed11ce1fccf4fc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ buildDunePackage, cstruct, ppx_tools_versioned }:

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

  minimumOCamlVersion = "4.02";

	buildInputs = [ ppx_tools_versioned ];
	propagatedBuildInputs = [ cstruct ];
}