1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

prooftree: force ocaml 4.01

This commit is contained in:
Florent Becker 2017-02-16 11:55:47 +01:00 committed by Florent Becker
parent ea68576b7a
commit b0d7d60fd4

View file

@ -723,7 +723,10 @@ let
camlp5 = camlp5_transitional;
};
prooftree = callPackage ../applications/science/logic/prooftree {
prooftree =
if lib.versionOlder "4.01" ocaml.version
then null
else callPackage ../applications/science/logic/prooftree {
camlp5 = camlp5_transitional;
};
};