nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.earlybird: disable for OCaml ≥ 4.08

authored by

Vincent Laporte and committed by
Vincent Laporte
4ada24a0 bdcba831

+5 -1
+5 -1
pkgs/development/ocaml-modules/earlybird/default.nix
··· 1 - { lib, fetchurl, buildDunePackage, angstrom, angstrom-lwt-unix, 1 + { lib, fetchurl, ocaml, buildDunePackage, angstrom, angstrom-lwt-unix, 2 2 batteries, cmdliner, lwt_ppx, ocaml_lwt, ppx_deriving_yojson, 3 3 ppx_tools_versioned, yojson }: 4 + 5 + if lib.versionAtLeast ocaml.version "4.08" 6 + then throw "earlybird is not available for OCaml ${ocaml.version}" 7 + else 4 8 5 9 buildDunePackage rec { 6 10 pname = "earlybird";