Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 js_of_ocaml-ppx, 4 js_of_ocaml, 5 reactivedata, 6 tyxml, 7}: 8 9buildDunePackage { 10 pname = "js_of_ocaml-tyxml"; 11 12 inherit (js_of_ocaml) version src meta; 13 14 buildInputs = [ js_of_ocaml-ppx ]; 15 16 propagatedBuildInputs = [ 17 js_of_ocaml 18 reactivedata 19 tyxml 20 ]; 21}