summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix
blob: 9ed0f5afcde7c2c500f67fcc80da00c2d11bed9e (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;

  propagatedBuildInputs = [ js_of_ocaml ppxlib ];

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