Merge pull request #257986 from vbgl/ocaml-containers-3.12

ocamlPackages.containers: 3.11 → 3.12
This commit is contained in:
Ulrik Strid 2023-10-04 07:58:40 +02:00 committed by GitHub
commit d67e1c5343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View File

@ -1,6 +1,7 @@
{ buildDunePackage, containers
, dune-configurator
, gen, iter, qcheck-core
, mdx
}:
buildDunePackage {
@ -8,9 +9,8 @@ buildDunePackage {
inherit (containers) src version doCheck;
duneVersion = "3";
buildInputs = [ dune-configurator ];
nativeCheckInputs = [ mdx.bin ];
checkInputs = [ gen iter qcheck-core ];
propagatedBuildInputs = [ containers ];

View File

@ -5,16 +5,14 @@
}:
buildDunePackage rec {
version = "3.11";
version = "3.12";
pname = "containers";
duneVersion = "3";
src = fetchFromGitHub {
owner = "c-cube";
repo = "ocaml-containers";
rev = "v${version}";
hash = "sha256-tGAsg98/T6VKvG95I4qioabWM3TEKrDKlsrfUJqxCyM=";
hash = "sha256-15Wd6k/NvjAvTmxlPlZPClODBtFXM6FG3VxniC66u88=";
};
buildInputs = [ dune-configurator ];