nixpkgs/pkgs/build-support/ocaml/oasis.nix

45 lines
1,023 B
Nix
Raw Normal View History

2019-08-07 04:51:36 +00:00
{ stdenv, ocaml_oasis, ocaml, findlib, ocamlbuild }:
2019-08-06 15:54:09 +00:00
{ name, version, buildInputs ? [], meta ? { platforms = ocaml.meta.platforms or []; },
minimumOcamlVersion ? null,
createFindlibDestdir ? true,
dontStrip ? true,
...
}@args:
2019-08-06 15:54:09 +00:00
assert minimumOcamlVersion != null ->
stdenv.lib.versionOlder minimumOcamlVersion ocaml.version;
stdenv.mkDerivation (args // {
2019-08-07 04:51:36 +00:00
name = "ocaml${ocaml.version}-${name}-${version}";
2019-08-06 15:54:09 +00:00
2019-08-07 04:51:36 +00:00
buildInputs = [ ocaml findlib ocamlbuild ocaml_oasis ] ++ buildInputs;
2019-08-06 15:54:09 +00:00
inherit createFindlibDestdir;
inherit dontStrip;
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 15:54:09 +00:00
})