ocamlPackages.camlp4: init at 4.14+1

authored by Vincent Laporte and committed by Vincent Laporte 27eba8bf b21a8e21

+4 -1
+4 -1
pkgs/development/tools/ocaml/camlp4/default.nix
··· 1 1 { lib, stdenv, fetchzip, which, ocaml, ocamlbuild }: 2 2 3 - if lib.versionAtLeast ocaml.version "4.14" 3 + if lib.versionAtLeast ocaml.version "4.15" 4 4 then throw "camlp4 is not available for OCaml ${ocaml.version}" 5 5 else 6 6 ··· 41 41 "4.13" = { 42 42 version = "4.13+1"; 43 43 sha256 = "0fzxa1zdhk74mlxpin7p90flks6sp4gkc0mfclmj9zak15rii55n"; }; 44 + "4.14" = { 45 + version = "4.14+1"; 46 + sha256 = "sha256-cPN3GioZT/Zt6uzbjGUPEGVJcPQdsAnCkU/AQoPfvuo="; }; 44 47 }.${ocaml.meta.branch}; 45 48 in 46 49