ocaml-ulex: fix build with OCaml-4.02 (depends on camlp4)

wip/yesman
Vincent Laporte 9 years ago
parent d440059e7d
commit e63c1ea33e
  1. 5
      pkgs/development/ocaml-modules/ulex/default.nix

@ -1,4 +1,4 @@
{stdenv, fetchurl, ocaml, findlib }:
{ stdenv, fetchurl, ocaml, findlib, camlp4 }:
let
ocaml_version = (builtins.parseDrvName ocaml.name).version;
@ -17,7 +17,8 @@ stdenv.mkDerivation {
createFindlibDestdir = true;
buildInputs = [ocaml findlib];
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ camlp4 ];
buildFlags = "all all.opt";

Loading…
Cancel
Save