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

buildDunePackage {
  pname = "js_of_ocaml-ppx_deriving_json";

  inherit (js_of_ocaml-compiler) version src;
  duneVersion = "3";

  propagatedBuildInputs = [ js_of_ocaml ppxlib ];

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