summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix
blob: 5256cd4037fc2d1df0a0bc5e7d5224b11caa36be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ buildDunePackage, js_of_ocaml-compiler
, js_of_ocaml, ppxlib
}:

buildDunePackage {
  pname = "js_of_ocaml-ppx_deriving_json";

  inherit (js_of_ocaml-compiler) version src useDune2;

  propagatedBuildInputs = [ js_of_ocaml ppxlib ];

  meta = builtins.removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
}