ocamlPackages.containers: 3.11 → 3.12

+4 -6
+2 -2
pkgs/development/ocaml-modules/containers/data.nix
··· 1 1 { buildDunePackage, containers 2 2 , dune-configurator 3 3 , gen, iter, qcheck-core 4 + , mdx 4 5 }: 5 6 6 7 buildDunePackage { ··· 8 9 9 10 inherit (containers) src version doCheck; 10 11 11 - duneVersion = "3"; 12 - 13 12 buildInputs = [ dune-configurator ]; 13 + nativeCheckInputs = [ mdx.bin ]; 14 14 checkInputs = [ gen iter qcheck-core ]; 15 15 16 16 propagatedBuildInputs = [ containers ];
+2 -4
pkgs/development/ocaml-modules/containers/default.nix
··· 5 5 }: 6 6 7 7 buildDunePackage rec { 8 - version = "3.11"; 8 + version = "3.12"; 9 9 pname = "containers"; 10 - 11 - duneVersion = "3"; 12 10 13 11 src = fetchFromGitHub { 14 12 owner = "c-cube"; 15 13 repo = "ocaml-containers"; 16 14 rev = "v${version}"; 17 - hash = "sha256-tGAsg98/T6VKvG95I4qioabWM3TEKrDKlsrfUJqxCyM="; 15 + hash = "sha256-15Wd6k/NvjAvTmxlPlZPClODBtFXM6FG3VxniC66u88="; 18 16 }; 19 17 20 18 buildInputs = [ dune-configurator ];