2021-01-11 04:49:15 -08:00
|
|
|
{ stdenv, lib, fetchurl, ocaml, findlib, cppo, minimal ? true }:
|
2012-01-16 02:20:13 -08:00
|
|
|
|
2021-01-11 04:49:15 -08:00
|
|
|
assert lib.versionAtLeast (lib.getVersion ocaml) "3.11";
|
2014-09-21 03:02:55 -07:00
|
|
|
|
2012-01-16 02:20:13 -08:00
|
|
|
stdenv.mkDerivation {
|
2020-11-28 14:33:28 -08:00
|
|
|
name = "ocaml${ocaml.version}-extlib-1.7.7";
|
2012-01-16 02:20:13 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-28 14:33:28 -08:00
|
|
|
url = "http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.7.tar.gz";
|
|
|
|
sha256 = "1sxmzc1mx3kg62j8kbk0dxkx8mkf1rn70h542cjzrziflznap0s1";
|
2012-01-16 02:20:13 -08:00
|
|
|
};
|
|
|
|
|
2017-03-29 11:39:34 -07:00
|
|
|
buildInputs = [ ocaml findlib cppo ];
|
2012-01-16 02:20:13 -08:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2019-06-19 08:36:06 -07:00
|
|
|
dontConfigure = true; # Skip configure
|
2014-01-31 04:59:44 -08:00
|
|
|
# De facto, option minimal=1 seems to be the default. See the README.
|
2014-07-06 08:41:40 -07:00
|
|
|
buildPhase = "make ${if minimal then "minimal=1" else ""} build";
|
|
|
|
installPhase = "make ${if minimal then "minimal=1" else ""} install";
|
2012-01-16 02:20:13 -08:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ygrek/ocaml-extlib";
|
2012-01-16 02:20:13 -08:00
|
|
|
description = "Enhancements to the OCaml Standard Library modules";
|
2021-01-11 04:49:15 -08:00
|
|
|
license = lib.licenses.lgpl21;
|
2015-12-24 09:49:07 -08:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2012-01-16 02:20:13 -08:00
|
|
|
};
|
|
|
|
}
|