ocamlformat_0_24_1: added

It is identical to 0.24.0 in dependency.

Speaking of 0.24.0, it wasn't actually released into Opam so I also
removed it from all-packages.nix. It's still available through override.
This commit is contained in:
Jules Aguillon 2022-08-25 17:04:14 +02:00
parent 857efbb889
commit cc457c5912
3 changed files with 4 additions and 3 deletions

View file

@ -11,7 +11,7 @@ rec {
ocamlformat_0_21_0 = ocamlformat.override { version = "0.21.0"; };
ocamlformat_0_22_4 = ocamlformat.override { version = "0.22.4"; };
ocamlformat_0_23_0 = ocamlformat.override { version = "0.23.0"; };
ocamlformat_0_24_0 = ocamlformat.override { version = "0.24.0"; };
ocamlformat_0_24_1 = ocamlformat.override { version = "0.24.1"; };
ocamlformat = callPackage ./generic.nix {};
}

View file

@ -1,5 +1,5 @@
{ lib, fetchurl, fetchzip, ocaml-ng
, version ? "0.24.0"
, version ? "0.24.1"
, tarballName ? "ocamlformat-${version}.tbz",
}:
@ -14,6 +14,7 @@ let src =
"0.22.4" = "sha256-61TeK4GsfMLmjYGn3ICzkagbc3/Po++Wnqkb2tbJwGA=";
"0.23.0" = "sha256-m9Pjz7DaGy917M1GjyfqG5Lm5ne7YSlJF2SVcDHe3+0=";
"0.24.0" = "sha256-Zil0wceeXmq2xy0OVLxa/Ujl4Dtsmc4COyv6Jo7rVaM=";
"0.24.1" = "sha256-AjQl6YGPgOpQU3sjcaSnZsFJqZV9BYB+iKAE0tX0Qc4=";
}."${version}";
};
ocamlPackages = ocaml-ng.ocamlPackages;

View file

@ -14209,7 +14209,7 @@ with pkgs;
inherit (callPackage ../development/tools/ocaml/ocamlformat { })
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_0;
ocamlformat_0_22_4 ocamlformat_0_23_0 ocamlformat_0_24_1;
orc = callPackage ../development/compilers/orc { };