janestreet: use Oasis 0.4.6

This commit is contained in:
Matthew Maurer 2016-09-24 13:08:51 -04:00
parent 6f5d3bec32
commit 3e81648645
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ buildOcaml, opam, js_build_tools, ocaml_oasis, fetchurl } :
{ buildOcaml, opam, js_build_tools, ocaml_oasis_46, fetchurl } :
{ name, version ? "113.33.03", buildInputs ? [],
hash ? "",
@ -14,7 +14,7 @@ buildOcaml (args // {
hasSharedObjects = true;
buildInputs = [ ocaml_oasis js_build_tools opam ] ++ buildInputs;
buildInputs = [ ocaml_oasis_46 js_build_tools opam ] ++ buildInputs;
dontAddPrefix = true;

View file

@ -1,4 +1,4 @@
{stdenv, buildOcaml, fetchurl, ocaml_oasis, opam}:
{stdenv, buildOcaml, fetchurl, ocaml_oasis_46, opam}:
buildOcaml rec {
name = "js-build-tools";
@ -13,7 +13,7 @@ buildOcaml rec {
hasSharedObjects = true;
buildInputs = [ ocaml_oasis opam ];
buildInputs = [ ocaml_oasis_46 opam ];
dontAddPrefix = true;
configurePhase = "./configure --prefix $prefix";