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

ocamlPackages.twt: disable for OCaml ≥ 5.0

authored by

Vincent Laporte and committed by
Vincent Laporte
0788043a 62c789ff

+3
+3
pkgs/development/ocaml-modules/twt/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, ocaml, findlib }: 2 2 3 + lib.throwIf (lib.versionAtLeast ocaml.version "5.0") 4 + "twt is not available for OCaml ${ocaml.version}" 5 + 3 6 stdenv.mkDerivation rec { 4 7 pname = "ocaml${ocaml.version}-twt"; 5 8 version = "0.94.0";