2012-01-16 11:20:13 +01:00
|
|
|
{stdenv, fetchurl, ocaml, findlib}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-07-13 22:21:11 +02:00
|
|
|
name = "ocaml-extlib-1.5.3";
|
2012-01-16 11:20:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-09-12 21:22:20 +02:00
|
|
|
url = http://ocaml-extlib.googlecode.com/files/extlib-1.5.3.tar.gz;
|
|
|
|
sha256 = "c095eef4202a8614ff1474d4c08c50c32d6ca82d1015387785cf03d5913ec021";
|
2012-01-16 11:20:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ocaml findlib];
|
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2012-03-22 11:32:32 +01:00
|
|
|
buildPhase = ''
|
|
|
|
make all
|
|
|
|
make opt
|
|
|
|
'';
|
2012-01-16 11:20:13 +01:00
|
|
|
|
|
|
|
meta = {
|
2012-09-12 21:22:20 +02:00
|
|
|
homepage = http://code.google.com/p/ocaml-extlib/;
|
2012-01-16 11:20:13 +01:00
|
|
|
description = "Enhancements to the OCaml Standard Library modules";
|
2012-09-12 21:22:20 +02:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2012-01-16 11:20:13 +01:00
|
|
|
platforms = ocaml.meta.platforms;
|
|
|
|
};
|
|
|
|
}
|