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