about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-06-29 12:04:29 +0000
committerGitHub <noreply@github.com>2021-06-29 12:04:29 +0000
commitfc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6 (patch)
treea8e7bd1aff2ebabf9a947bb5cea7d1976e8ec6d1 /pkgs/development/ocaml-modules
parentde136681f7986084e076fdcd33700ae01cfe5585 (diff)
parente717ab438957ead3bd9860601b6fb19b9e2d08c3 (diff)
downloadnixlib-fc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6.tar
nixlib-fc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6.tar.gz
nixlib-fc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6.tar.bz2
nixlib-fc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6.tar.lz
nixlib-fc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6.tar.xz
nixlib-fc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6.tar.zst
nixlib-fc4cc6ca9393fb3b2667ceb12f281c4f8d2df7e6.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/ppxlib/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/ppxlib/default.nix b/pkgs/development/ocaml-modules/ppxlib/default.nix
index a19d8cce52fb..c4591927e075 100644
--- a/pkgs/development/ocaml-modules/ppxlib/default.nix
+++ b/pkgs/development/ocaml-modules/ppxlib/default.nix
@@ -2,7 +2,7 @@
 , version ?
   if lib.versionAtLeast ocaml.version "4.07"
   then if lib.versionAtLeast ocaml.version "4.08"
-  then "0.22.0" else "0.15.0" else "0.13.0"
+  then "0.22.2" else "0.15.0" else "0.13.0"
 , ocaml-compiler-libs, ocaml-migrate-parsetree, ppx_derivers, stdio
 , stdlib-shims, ocaml-migrate-parsetree-2
 }:
@@ -34,6 +34,10 @@ let param = {
     sha256 = "0kf7lgcwygf6zlx7rwddqpqvasa6v7xiq0bqal8vxlib6lpg074q";
     min_version = "4.07";
   };
+  "0.22.2" = {
+    sha256 = "0fysjqcpv281n52wl3h0dy2lzf9d61wdzk90ldv3p63a4i3mr1j2";
+    min_version = "4.07";
+  };
 }."${version}"; in
 
 if param ? max_version && lib.versionAtLeast ocaml.version param.max_version