summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorArie Middelkoop <amiddelk@gmail.com>2012-03-22 10:32:32 +0000
committerArie Middelkoop <amiddelk@gmail.com>2012-03-22 10:32:32 +0000
commit3a7b035380fb99e532c613cf275deb3b736e6233 (patch)
treea1524162f3c7f3dde3b06217dcac4f02b0dcbfbb /pkgs/development/ocaml-modules
parent31ffda057ebaf41064259793a0dee4ec7bd2b7e5 (diff)
Fix of the ocaml extlib expression. The native object files were not installed. Turns out that also the 'opt' make target must be run besides 'all'.
svn path=/nixpkgs/trunk/; revision=33350
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/extlib/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/extlib/default.nix b/pkgs/development/ocaml-modules/extlib/default.nix
index 408082226221d..55e1c84183057 100644
--- a/pkgs/development/ocaml-modules/extlib/default.nix
+++ b/pkgs/development/ocaml-modules/extlib/default.nix
@@ -12,7 +12,10 @@ stdenv.mkDerivation {
 
   createFindlibDestdir = true;
 
-  configurePhase = "true";
+  buildPhase = ''
+    make all
+    make opt
+  '';
 
   meta = {
     homepage = "http://code.google.com/p/ocaml-extlib/";