about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-05-03 15:48:21 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-05-03 15:48:21 +0200
commit4ea520ce4855ee06979fb62206b17499cb4f438a (patch)
treecef81b19ef315c6707067bf57c9c7ba62f8695d4 /pkgs/development/tools/ocaml
parent5e5d16f425397fd7cb1b42256a0dc25e76e1b4bc (diff)
downloadnixlib-4ea520ce4855ee06979fb62206b17499cb4f438a.tar
nixlib-4ea520ce4855ee06979fb62206b17499cb4f438a.tar.gz
nixlib-4ea520ce4855ee06979fb62206b17499cb4f438a.tar.bz2
nixlib-4ea520ce4855ee06979fb62206b17499cb4f438a.tar.lz
nixlib-4ea520ce4855ee06979fb62206b17499cb4f438a.tar.xz
nixlib-4ea520ce4855ee06979fb62206b17499cb4f438a.tar.zst
nixlib-4ea520ce4855ee06979fb62206b17499cb4f438a.zip
ocamlPackages.utop: add missing makeWrapper
... fixing the build.  No testing otherwise.
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/utop/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix
index 8ab1371af9cb..c50e6a108bda 100644
--- a/pkgs/development/tools/ocaml/utop/default.nix
+++ b/pkgs/development/tools/ocaml/utop/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, bash, ocaml, findlib, ocamlbuild, camlp4, ocaml_react
-, lambdaTerm, ocaml_lwt, camomile, zed, cppo, ppx_tools
+, lambdaTerm, ocaml_lwt, camomile, zed, cppo, ppx_tools, makeWrapper
 }:
 
 stdenv.mkDerivation rec {
@@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "16z02vp9n97iax4fqpbi7v86r75vbabxvnd1rirh8w2miixs1g4x";
   };
 
+  nativeBuildInputs = [ makeWrapper ];
   buildInputs = [ ocaml findlib ocamlbuild cppo camlp4 ppx_tools ];
 
   propagatedBuildInputs = [ lambdaTerm ocaml_lwt ];