nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 js_of_ocaml-compiler,
4 ppxlib,
5}:
6
7buildDunePackage {
8 pname = "js_of_ocaml";
9
10 inherit (js_of_ocaml-compiler) version src;
11
12 buildInputs = [ ppxlib ];
13
14 propagatedBuildInputs = [ js_of_ocaml-compiler ];
15
16 meta = removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
17}