Skip to content

Commit

Permalink
ocamlPackages.earlybird: disable for OCaml ≥ 4.08
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Mar 13, 2020
1 parent bdcba83 commit 4ada24a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/ocaml-modules/earlybird/default.nix
@@ -1,7 +1,11 @@
{ lib, fetchurl, buildDunePackage, angstrom, angstrom-lwt-unix,
{ lib, fetchurl, ocaml, buildDunePackage, angstrom, angstrom-lwt-unix,
batteries, cmdliner, lwt_ppx, ocaml_lwt, ppx_deriving_yojson,
ppx_tools_versioned, yojson }:

if lib.versionAtLeast ocaml.version "4.08"
then throw "earlybird is not available for OCaml ${ocaml.version}"
else

buildDunePackage rec {
pname = "earlybird";
version = "0.1.5";
Expand Down

0 comments on commit 4ada24a

Please sign in to comment.