From 79fa97caa3e61f4793744b7148d5bdac01f0aa4e Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 19 Mar 2023 08:53:44 +0100 Subject: [PATCH] =?UTF-8?q?ocamlPackages.containers:=203.10=20=E2=86=92=20?= =?UTF-8?q?3.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/containers/data.nix | 2 ++ pkgs/development/ocaml-modules/containers/default.nix | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/containers/data.nix b/pkgs/development/ocaml-modules/containers/data.nix index 980984c6ec0..bdad78cdf6f 100644 --- a/pkgs/development/ocaml-modules/containers/data.nix +++ b/pkgs/development/ocaml-modules/containers/data.nix @@ -8,6 +8,8 @@ buildDunePackage { inherit (containers) src version doCheck; + duneVersion = "3"; + buildInputs = [ dune-configurator ]; checkInputs = [ gen iter qcheck-core ]; diff --git a/pkgs/development/ocaml-modules/containers/default.nix b/pkgs/development/ocaml-modules/containers/default.nix index 4cd6413293e..f1c82f189bb 100644 --- a/pkgs/development/ocaml-modules/containers/default.nix +++ b/pkgs/development/ocaml-modules/containers/default.nix @@ -5,14 +5,16 @@ }: buildDunePackage rec { - version = "3.10"; + version = "3.11"; pname = "containers"; + duneVersion = "3"; + src = fetchFromGitHub { owner = "c-cube"; repo = "ocaml-containers"; rev = "v${version}"; - hash = "sha256-eWmju4CD30+wX3sKI8rOUEbqbQygdOtc0U4sb9vYuNA="; + hash = "sha256-tGAsg98/T6VKvG95I4qioabWM3TEKrDKlsrfUJqxCyM="; }; buildInputs = [ dune-configurator ];