ocamlformat: 0.25.1 -> 0.26.0

As always, the previous version is retained. The "preferred" version is
bumped.

Changed files
+5 -2
pkgs
development
ocaml-modules
top-level
+1
pkgs/development/ocaml-modules/ocamlformat/generic.nix
···
"0.24.0" = "sha256-Zil0wceeXmq2xy0OVLxa/Ujl4Dtsmc4COyv6Jo7rVaM=";
"0.24.1" = "sha256-AjQl6YGPgOpQU3sjcaSnZsFJqZV9BYB+iKAE0tX0Qc4=";
"0.25.1" = "sha256-3I8qMwyjkws2yssmI7s2Dti99uSorNKT29niJBpv0z0=";
+
"0.26.0" = "sha256-AxSUq3cM7xCo9qocvrVmDkbDqmwM1FexEP7IWadeh30=";
}."${version}";
};
+1 -1
pkgs/development/ocaml-modules/ocamlformat/ocamlformat.nix
···
{ 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;
+2 -1
pkgs/top-level/all-packages.nix
···
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 { };
+1
pkgs/top-level/ocaml-packages.nix
···
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 {};