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