about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/extlib
diff options
context:
space:
mode:
authorMarco Maggesi <maggesi@math.unifi.it>2014-01-31 13:59:44 +0100
committerMarco Maggesi <maggesi@math.unifi.it>2014-01-31 13:59:44 +0100
commit210a9db16f2649e422b41ab077851f079bed6ee3 (patch)
tree8b09c4d7941ad0b42b248f231b46efcfb4cfb42c /pkgs/development/ocaml-modules/extlib
parent287b22cc63cfd8276ed06ab04cbbbbe99e2777cd (diff)
downloadnixlib-210a9db16f2649e422b41ab077851f079bed6ee3.tar
nixlib-210a9db16f2649e422b41ab077851f079bed6ee3.tar.gz
nixlib-210a9db16f2649e422b41ab077851f079bed6ee3.tar.bz2
nixlib-210a9db16f2649e422b41ab077851f079bed6ee3.tar.lz
nixlib-210a9db16f2649e422b41ab077851f079bed6ee3.tar.xz
nixlib-210a9db16f2649e422b41ab077851f079bed6ee3.tar.zst
nixlib-210a9db16f2649e422b41ab077851f079bed6ee3.zip
Update OCaml ExtLib to version 1.6.1
Diffstat (limited to 'pkgs/development/ocaml-modules/extlib')
-rw-r--r--pkgs/development/ocaml-modules/extlib/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/extlib/default.nix b/pkgs/development/ocaml-modules/extlib/default.nix
index 41620b9424f8..8b977dd7c525 100644
--- a/pkgs/development/ocaml-modules/extlib/default.nix
+++ b/pkgs/development/ocaml-modules/extlib/default.nix
@@ -1,21 +1,21 @@
 {stdenv, fetchurl, ocaml, findlib}:
 
 stdenv.mkDerivation {
-  name = "ocaml-extlib-1.5.3";
+  name = "ocaml-extlib-1.6.1";
 
   src = fetchurl {
-    url = http://ocaml-extlib.googlecode.com/files/extlib-1.5.3.tar.gz;
-    sha256 = "c095eef4202a8614ff1474d4c08c50c32d6ca82d1015387785cf03d5913ec021";
+    url = http://ocaml-extlib.googlecode.com/files/extlib-1.6.1.tar.gz;
+    sha256 = "1jmfj2w0f3ap0swz8k3qqmrl6x2y4gkmg88vv024xnmliiiv7m48";
   };
 
   buildInputs = [ocaml findlib];
 
   createFindlibDestdir = true;
 
-  buildPhase = ''
-    make all
-    make opt
-  '';
+  configurePhase = "true";      # Skip configure
+  # De facto, option minimal=1 seems to be the default.  See the README.
+  buildPhase     = "make minimal=1 build";
+  installPhase   = "make minimal=1 install";
 
   meta = {
     homepage = http://code.google.com/p/ocaml-extlib/;