tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.frontc: disable for OCaml ≥ 4.06
Vincent Laporte
7 years ago
23fd7e45
6a983194
+5
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
frontc
default.nix
+5
-1
pkgs/development/ocaml-modules/frontc/default.nix
···
1
1
-
{lib, buildOcaml, fetchurl}:
1
1
+
{ lib, buildOcaml, fetchurl, ocaml }:
2
2
+
3
3
+
if lib.versionAtLeast ocaml.version "4.06"
4
4
+
then throw "FrontC is not available for OCaml ${ocaml.version}"
5
5
+
else
2
6
3
7
buildOcaml rec {
4
8
name = "FrontC";