2019-08-07 05:51:36 +01:00
|
|
|
{ stdenv, ocaml_oasis, ocaml, findlib, ocamlbuild }:
|
2019-08-01 09:44:04 +01:00
|
|
|
|
2019-08-07 08:50:46 +01:00
|
|
|
{ pname, version, buildInputs ? [], meta ? { platforms = ocaml.meta.platforms or []; },
|
|
|
|
minimumOCamlVersion ? null,
|
2019-08-06 16:54:09 +01:00
|
|
|
createFindlibDestdir ? true,
|
|
|
|
dontStrip ? true,
|
|
|
|
...
|
2019-08-01 09:44:04 +01:00
|
|
|
}@args:
|
|
|
|
|
2019-08-07 08:50:46 +01:00
|
|
|
if args ? minimumOCamlVersion &&
|
|
|
|
! stdenv.lib.versionAtLeast ocaml.version args.minimumOCamlVersion
|
|
|
|
then throw "${pname}-${version} is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
2019-08-06 16:54:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation (args // {
|
2019-08-07 08:50:46 +01:00
|
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
2019-08-06 16:54:09 +01:00
|
|
|
|
2019-08-07 05:51:36 +01:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ocaml_oasis ] ++ buildInputs;
|
2019-08-06 16:54:09 +01:00
|
|
|
|
|
|
|
inherit createFindlibDestdir;
|
|
|
|
inherit dontStrip;
|
2019-08-01 09:44:04 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
oasis setup
|
|
|
|
ocaml setup.ml -configure
|
|
|
|
ocaml setup.ml -build
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
ocaml setup.ml -test
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
|
|
sed -i s+/usr/local+$out+g setup.ml
|
|
|
|
sed -i s+/usr/local+$out+g setup.data
|
|
|
|
prefix=$OCAMLFIND_DESTDIR ocaml setup.ml -install
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
2019-08-06 16:54:09 +01:00
|
|
|
|
2019-08-01 09:44:04 +01:00
|
|
|
})
|