Update OCaml ExtLib to version 1.6.1
This commit is contained in:
parent
287b22cc63
commit
210a9db16f
@ -1,21 +1,21 @@
|
|||||||
{stdenv, fetchurl, ocaml, findlib}:
|
{stdenv, fetchurl, ocaml, findlib}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ocaml-extlib-1.5.3";
|
name = "ocaml-extlib-1.6.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://ocaml-extlib.googlecode.com/files/extlib-1.5.3.tar.gz;
|
url = http://ocaml-extlib.googlecode.com/files/extlib-1.6.1.tar.gz;
|
||||||
sha256 = "c095eef4202a8614ff1474d4c08c50c32d6ca82d1015387785cf03d5913ec021";
|
sha256 = "1jmfj2w0f3ap0swz8k3qqmrl6x2y4gkmg88vv024xnmliiiv7m48";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ocaml findlib];
|
buildInputs = [ocaml findlib];
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
buildPhase = ''
|
configurePhase = "true"; # Skip configure
|
||||||
make all
|
# De facto, option minimal=1 seems to be the default. See the README.
|
||||||
make opt
|
buildPhase = "make minimal=1 build";
|
||||||
'';
|
installPhase = "make minimal=1 install";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://code.google.com/p/ocaml-extlib/;
|
homepage = http://code.google.com/p/ocaml-extlib/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user