ocamlformat: 0.25.1 -> 0.26.0

As always, the previous version is retained. The "preferred" version is
bumped.
This commit is contained in:
Jules Aguillon 2023-07-19 14:31:12 +02:00 committed by Vincent Laporte
parent 0665253b86
commit 984a19f393
4 changed files with 5 additions and 2 deletions

View file

@ -22,6 +22,7 @@ rec {
"0.24.0" = "sha256-Zil0wceeXmq2xy0OVLxa/Ujl4Dtsmc4COyv6Jo7rVaM=";
"0.24.1" = "sha256-AjQl6YGPgOpQU3sjcaSnZsFJqZV9BYB+iKAE0tX0Qc4=";
"0.25.1" = "sha256-3I8qMwyjkws2yssmI7s2Dti99uSorNKT29niJBpv0z0=";
"0.26.0" = "sha256-AxSUq3cM7xCo9qocvrVmDkbDqmwM1FexEP7IWadeh30=";
}."${version}";
};

View file

@ -1,5 +1,5 @@
{ lib, callPackage, buildDunePackage, re, ocamlformat-lib, menhir
, version ? "0.25.1" }:
, version ? "0.26.0" }:
let inherit (callPackage ./generic.nix { inherit version; }) src library_deps;

View file

@ -16467,7 +16467,8 @@ with pkgs;
inherit (ocamlPackages)
ocamlformat # latest version
ocamlformat_0_19_0 ocamlformat_0_20_0 ocamlformat_0_20_1 ocamlformat_0_21_0
ocamlformat_0_22_4 ocamlformat_0_23_0 ocamlformat_0_24_1 ocamlformat_0_25_1;
ocamlformat_0_22_4 ocamlformat_0_23_0 ocamlformat_0_24_1 ocamlformat_0_25_1
ocamlformat_0_26_0;
orc = callPackage ../development/compilers/orc { };

View file

@ -1181,6 +1181,7 @@ let
ocamlformat_0_23_0 = ocamlformat.override { version = "0.23.0"; };
ocamlformat_0_24_1 = ocamlformat.override { version = "0.24.1"; };
ocamlformat_0_25_1 = ocamlformat.override { version = "0.25.1"; };
ocamlformat_0_26_0 = ocamlformat.override { version = "0.26.0"; };
ocamlformat = callPackage ../development/ocaml-modules/ocamlformat/ocamlformat.nix {};