From 65d401f0b101a294dfd36ebcffa67375546ae586 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 28 Dec 2023 12:18:12 +0000 Subject: [PATCH 1/2] ocamlPackages.containers: 3.12 -> 3.13.1 --- pkgs/development/ocaml-modules/containers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/containers/default.nix b/pkgs/development/ocaml-modules/containers/default.nix index ee3d7045d565..af5975771e45 100644 --- a/pkgs/development/ocaml-modules/containers/default.nix +++ b/pkgs/development/ocaml-modules/containers/default.nix @@ -5,14 +5,14 @@ }: buildDunePackage rec { - version = "3.12"; + version = "3.13.1"; pname = "containers"; src = fetchFromGitHub { owner = "c-cube"; repo = "ocaml-containers"; rev = "v${version}"; - hash = "sha256-15Wd6k/NvjAvTmxlPlZPClODBtFXM6FG3VxniC66u88="; + hash = "sha256-jkXh/dBRotWXvA77M/+tm39qsCiBsH/HSs+Y9D9QCek="; }; buildInputs = [ dune-configurator ]; From 7aecbfc5816872179930697130a8b683a97680ac Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Sat, 20 Jan 2024 19:24:41 +0100 Subject: [PATCH 2/2] ocamlPackages.containers: set minimal ocaml version --- pkgs/development/ocaml-modules/containers/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/ocaml-modules/containers/default.nix b/pkgs/development/ocaml-modules/containers/default.nix index af5975771e45..654e86ab1517 100644 --- a/pkgs/development/ocaml-modules/containers/default.nix +++ b/pkgs/development/ocaml-modules/containers/default.nix @@ -8,6 +8,8 @@ buildDunePackage rec { version = "3.13.1"; pname = "containers"; + minimalOCamlVersion = "4.08"; + src = fetchFromGitHub { owner = "c-cube"; repo = "ocaml-containers";