nixpkgs/pkgs/development/compilers/bs-platform/ocaml.nix
2020-01-14 15:17:57 -08:00

17 lines
299 B
Nix

{ stdenv, src, version }:
stdenv.mkDerivation rec {
inherit src version;
name = "ocaml-${version}+bs";
configurePhase = ''
./configure -prefix $out
'';
buildPhase = ''
make -j9 world.opt
'';
meta = with stdenv.lib; {
branch = "4.06";
platforms = platforms.all;
};
}