summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-24 13:08:51 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-24 13:09:10 -0400
commit3e81648645ecd7751b3822d0526999044efd5bb2 (patch)
tree919804dbdefe9c1021318fc28b6c4fe7253da0a8 /pkgs/development/ocaml-modules
parent6f5d3bec32192116d5b13e6f1f012f94434062eb (diff)
downloadnixlib-3e81648645ecd7751b3822d0526999044efd5bb2.tar
nixlib-3e81648645ecd7751b3822d0526999044efd5bb2.tar.gz
nixlib-3e81648645ecd7751b3822d0526999044efd5bb2.tar.bz2
nixlib-3e81648645ecd7751b3822d0526999044efd5bb2.tar.lz
nixlib-3e81648645ecd7751b3822d0526999044efd5bb2.tar.xz
nixlib-3e81648645ecd7751b3822d0526999044efd5bb2.tar.zst
nixlib-3e81648645ecd7751b3822d0526999044efd5bb2.zip
janestreet: use Oasis 0.4.6
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/buildOcamlJane.nix4
-rw-r--r--pkgs/development/ocaml-modules/janestreet/js-build-tools.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/buildOcamlJane.nix b/pkgs/development/ocaml-modules/janestreet/buildOcamlJane.nix
index 61b2038bfd29..6e988c4479a5 100644
--- a/pkgs/development/ocaml-modules/janestreet/buildOcamlJane.nix
+++ b/pkgs/development/ocaml-modules/janestreet/buildOcamlJane.nix
@@ -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;
 
diff --git a/pkgs/development/ocaml-modules/janestreet/js-build-tools.nix b/pkgs/development/ocaml-modules/janestreet/js-build-tools.nix
index bf697eda8007..328ffc58bdc1 100644
--- a/pkgs/development/ocaml-modules/janestreet/js-build-tools.nix
+++ b/pkgs/development/ocaml-modules/janestreet/js-build-tools.nix
@@ -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";