ocamlformat: 0.18.0 -> 0.19.0

https://github.com/ocaml-ppx/ocamlformat/releases/tag/0.19.0
This commit is contained in:
Mario Rodas 2021-07-28 04:20:00 +00:00 committed by Vincent Laporte
parent f7eb8b8c50
commit 707f6106fe
3 changed files with 26 additions and 3 deletions

View file

@ -56,5 +56,9 @@ rec {
version = "0.18.0";
};
ocamlformat = ocamlformat_0_18_0;
ocamlformat_0_19_0 = mkOCamlformat {
version = "0.19.0";
};
ocamlformat = ocamlformat_0_19_0;
}

View file

@ -22,6 +22,7 @@ let src =
"0.16.0" = "1vwjvvwha0ljc014v8jp8snki5zsqxlwd7x0dl0rg2i9kcmwc4mr";
"0.17.0" = "0f1lxp697yq61z8gqxjjaqd2ns8fd1vjfggn55x0gh9dx098p138";
"0.18.0" = "0571kzmb1h03qj74090n3mg8wfbh29qqrkdjkai6rnl5chll86lq";
"0.19.0" = "0ihgwl7d489g938m1jvgx8azdgq9f5np5mzqwwya797hx2m4dz32";
}."${version}";
};
ocamlPackages =
@ -46,7 +47,24 @@ buildDunePackage {
useDune2 = true;
buildInputs =
if lib.versionAtLeast version "0.18.0"
if lib.versionAtLeast version "0.19.0"
then [
base
cmdliner
fpath
re
stdio
uuseg
uutf
fix
menhir
menhirLib
menhirSdk
ocp-indent
dune-build-info
odoc-parser
]
else if lib.versionAtLeast version "0.18.0"
then [
base
cmdliner

View file

@ -11947,7 +11947,8 @@ in
ocamlformat # latest version
ocamlformat_0_11_0 ocamlformat_0_12 ocamlformat_0_13_0 ocamlformat_0_14_0
ocamlformat_0_14_1 ocamlformat_0_14_2 ocamlformat_0_14_3 ocamlformat_0_15_0
ocamlformat_0_15_1 ocamlformat_0_16_0 ocamlformat_0_17_0 ocamlformat_0_18_0;
ocamlformat_0_15_1 ocamlformat_0_16_0 ocamlformat_0_17_0 ocamlformat_0_18_0
ocamlformat_0_19_0;
orc = callPackage ../development/compilers/orc { };