nixpkgs/pkgs/development/compilers/ocaml/ber-metaocaml.nix

97 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
, ncurses
, libX11, xorgproto, buildEnv
}:
2017-12-08 23:35:22 +00:00
let
useX11 = stdenv.isi686 || stdenv.isx86_64;
x11deps = [ libX11 xorgproto ];
inherit (stdenv.lib) optionals;
baseOcamlBranch = "4.07";
baseOcamlVersion = "${baseOcamlBranch}.1";
metaocamlPatch = "107";
2017-12-08 23:35:22 +00:00
in
stdenv.mkDerivation rec {
pname = "ber-metaocaml";
version = metaocamlPatch;
2017-12-08 23:35:22 +00:00
src = fetchurl {
url = "https://caml.inria.fr/pub/distrib/ocaml-${baseOcamlBranch}/ocaml-${baseOcamlVersion}.tar.gz";
sha256 = "1x4sln131mcspisr22qc304590rvg720rbl7g2i4xiymgvhkpm1a";
2017-12-08 23:35:22 +00:00
};
metaocaml = fetchurl {
url = "http://okmij.org/ftp/ML/ber-metaocaml-107.tar.gz";
sha256 = "0xy6n0yj1f53pk612zfmn49pn04bd75qa40xgmr0w0lzx6dqsfmm";
2017-12-08 23:35:22 +00:00
};
x11env = buildEnv { name = "x11env"; paths = x11deps; };
x11lib = "${x11env}/lib";
x11inc = "${x11env}/include";
2017-12-08 23:35:22 +00:00
prefixKey = "-prefix ";
configureFlags = optionals useX11
[ "-x11lib" x11lib
"-x11include" x11inc
"-flambda"
];
2017-12-08 23:35:22 +00:00
dontStrip = true;
buildInputs = [ ncurses ] ++ optionals useX11 x11deps;
2017-12-08 23:35:22 +00:00
postConfigure = ''
tar -xvzf $metaocaml
cd ${pname}-${version}
2017-12-08 23:35:22 +00:00
make patch
cd ..
'';
2017-12-08 23:35:22 +00:00
buildPhase = ''
make world
make bootstrap
make opt.opt
make -i install
2017-12-08 23:35:22 +00:00
make installopt
mkdir -p $out/include
ln -sv $out/lib/ocaml/caml $out/include/caml
cd ${pname}-${version}
2017-12-08 23:35:22 +00:00
make all
'';
installPhase = ''
2017-12-08 23:35:22 +00:00
make install
make install.opt
'';
2017-12-08 23:35:22 +00:00
checkPhase = ''
cd ${pname}-${version}
2017-12-08 23:35:22 +00:00
make test
make test-compile
make test-native
cd ..
'';
passthru = {
nativeCompilers = true;
};
2017-12-08 23:35:22 +00:00
meta = with stdenv.lib; {
description = "Multi-Stage Programming extension for OCaml";
homepage = http://okmij.org/ftp/ML/MetaOCaml.html;
license = with licenses; [ /* compiler */ qpl /* library */ lgpl2 ];
maintainers = with maintainers; [ thoughtpolice ];
branch = baseOcamlBranch;
platforms = with platforms; linux ++ darwin;
broken = stdenv.isAarch64 || stdenv.isMips;
2017-12-08 23:35:22 +00:00
longDescription = ''
A simple extension of OCaml with the primitive type of code values, and
three basic multi-stage expression forms: Brackets, Escape, and Run.
2017-12-08 23:35:22 +00:00
'';
};
}