lol

ocamlPackages.ocaml_data_notation: disable for OCaml ≥ 4.06

+4
+4
pkgs/development/ocaml-modules/odn/default.nix
··· 1 1 { stdenv, fetchurl, ocaml, findlib, ocamlbuild, type_conv, ounit, camlp4 }: 2 2 3 + if stdenv.lib.versionAtLeast ocaml.version "4.06" 4 + then throw "ocaml-data-notation is not available for OCaml ${ocaml.version}" 5 + else 6 + 3 7 stdenv.mkDerivation { 4 8 name = "ocaml-data-notation-0.0.11"; 5 9