nixpkgs/pkgs/development/ocaml-modules/extlib/default.nix

27 lines
611 B
Nix
Raw Normal View History

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